-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsettings.gradle
23 lines (19 loc) · 883 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// global build settings for the Libbulletjme project
pluginManagement {
repositories {
gradlePluginPortal()
google() // to find plugins released to Google's Maven Repository
mavenCentral() // to find plugins released to the Maven Central repository
}
}
rootProject.name = 'Libbulletjme'
dependencyResolutionManagement {
repositories {
//mavenLocal() // to find libraries installed locally
google() // to find libraries released to Google's Maven Repository
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
}
}
// no subprojects