forked from streem/pbandk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
39 lines (35 loc) · 1.18 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
}
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"binary-compatibility-validator" -> {
useModule("org.jetbrains.kotlinx:binary-compatibility-validator:${requested.version}")
}
"com.android.application", "com.android.library" -> {
useModule("com.android.tools.build:gradle:${requested.version}")
}
}
}
}
}
rootProject.name = "pbandk"
include(":runtime")
project(":runtime").name = "pbandk-runtime"
include(":protos")
project(":protos").name = "pbandk-protos"
include(":test-types")
include(":protoc-gen-pbandk:lib")
project(":protoc-gen-pbandk:lib").name = "protoc-gen-pbandk-lib"
include(":protoc-gen-pbandk:jvm")
project(":protoc-gen-pbandk:jvm").name = "protoc-gen-pbandk-jvm"
include(":conformance:lib")
project(":conformance:lib").name = "conformance-lib"
include(":conformance:jvm")
project(":conformance:jvm").name = "conformance-jvm"
include(":conformance:native")
project(":conformance:native").name = "conformance-native"