23 lines
503 B
Groovy
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'
|