beans/settings.gradle

19 lines
412 B
Groovy
Raw Normal View History

2023-03-21 14:16:14 +01:00
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
2023-03-21 14:16:14 +01:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
2023-03-21 14:16:14 +01:00
}
}
rootProject.name = "beendroid"
2023-03-21 14:16:14 +01:00
include ':app'