-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
37 lines (32 loc) · 1.02 KB
/
settings.gradle.kts
File metadata and controls
37 lines (32 loc) · 1.02 KB
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
rootProject.name = "kttp"
includeBuild("build-logic")
include(":kttp-api")
include(":kttp-server:api")
include(":kttp-server:core")
include(":kttp-server:jdk")
include(":kttp-server:samples")
// Alias node names so all are unique
// Fix for https://github.com/gradle/gradle/issues/847
project(":kttp-api").projectDir = file("./kttp-api")
project(":kttp-server:api").projectDir = file("./kttp-server/api")
project(":kttp-server:core").projectDir = file("./kttp-server/core")
project(":kttp-server:jdk").projectDir = file("./kttp-server/jdk")
project(":kttp-server:samples").projectDir = file("./kttp-server/samples")
plugins {
id("com.gradle.enterprise").version("3.15.1")
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
}
}
gradleEnterprise {
if (!System.getenv("CI").isNullOrEmpty()) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}