mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-08 05:29:37 +00:00
21 lines
442 B
Kotlin
21 lines
442 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")
|
|
include(":graphql-interceptor")
|