-
Notifications
You must be signed in to change notification settings - Fork 37
/
settings.gradle.kts
36 lines (32 loc) · 1.01 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
}
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"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"