9
0
MetaPluginAndroidDemo/settings.gradle
2024-04-03 10:22:47 +02:00

23 lines
503 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// add the webid repo to receive the plugin
maven {
url 'https://api.webid-solutions.de/releases/android/maven/repository/internal'
}
}
}
rootProject.name = "MetaPluginDemo"
include ':app'