mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-08 10:54:48 +00:00
31 lines
767 B
Kotlin
31 lines
767 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "My Application"
|
|
include(":sample-android-only")
|
|
include(":sample-multiplatform")
|
|
include(":flocon-base")
|
|
include(":flocon")
|
|
include(":flocon-no-op")
|
|
include(":okhttp-interceptor")
|
|
include(":okhttp-interceptor-no-op")
|
|
include(":grpc:grpc-interceptor")
|
|
include(":grpc:grpc-interceptor-base")
|
|
include(":grpc:grpc-interceptor-lite")
|
|
include(":ktor-interceptor")
|
|
include(":ktor-interceptor-no-op")
|
|
include(":datastores")
|
|
include(":datastores-no-op")
|