mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-18 19:39:51 +00:00
20 lines
410 B
Kotlin
20 lines
410 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "My Application"
|
|
include(":app")
|
|
include(":core")
|
|
include(":okhttp-interceptor")
|
|
include(":grpc-interceptor")
|