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 22, 2023
1 parent 79806be commit 0d7a42c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@

dependencyResolutionManagement {
repositories {
//mavenLocal() // to find local SNAPSHOTs of libraries
mavenCentral()
//mavenLocal() // to find libraries installed locally
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
}
}

rootProject.name = 'jme-vehicles'

/*
* 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 0d7a42c

Please sign in to comment.