9
0
MetaPluginAndroidDemo/settings.gradle

23 lines
503 B
Groovy
Raw Normal View History

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'