mirror of
https://github.com/Michatec/Radio.git
synced 2026-03-31 23:46:28 +02:00
23 lines
469 B
Groovy
23 lines
469 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jetpack.io' }
|
|
}
|
|
}
|
|
|
|
include ':app'
|