Skip to content

Commit

Permalink
settings.gradle: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 6, 2023
1 parent da82363 commit 3d81cff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
/*
* settings.gradle: global settings shared by all subprojects
* settings.gradle: global settings shared by all j-ogg-all subprojects
*/

rootProject.name = 'j-ogg-all'

dependencyResolutionManagement {
repositories {
mavenCentral()
//mavenLocal() // to find local SNAPSHOTs of libraries
mavenCentral() // to find libraries released to the Maven Central repository
//maven { url 'https://s01.oss.sonatype.org/content/groups/staging' } // to find libraries staged but not yet released
//maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots' } // to find public SNAPSHOTs of libraries
}
}

/*
* Enumerate subdirectories in the project's root directory that contain a
* "build.gradle" file. Any subdirectory with a "build.gradle" file is
* "build.gradle" file. Any subdirectory that contains a "build.gradle" file is
* automatically a subproject of this project.
*/
def subDirs = rootDir.listFiles(
Expand Down

0 comments on commit 3d81cff

Please sign in to comment.