27 wiersze
653 B
Groovy
27 wiersze
653 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
ivy {
|
|
name = "OsmAndBinariesIvy"
|
|
url = "https://creator.osmand.net"
|
|
patternLayout {
|
|
artifact "ivy/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"
|
|
}
|
|
}
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url "https://jitpack.io"
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "Sonde Chaser"
|
|
include ':app'
|