37 lines
823 B
Plaintext
37 lines
823 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal {
|
|
content {
|
|
includeGroup("org.openrndr")
|
|
}
|
|
}
|
|
// Mapbox Maven repository
|
|
maven {
|
|
url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "geotools"
|
|
|
|
include(":android")
|
|
include(":math")
|
|
include(":icegps-common")
|
|
include(":icegps-shared")
|
|
include(":icegps-triangulation") |