-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
42 lines (36 loc) · 1.07 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
40
41
42
/*
* Copyright 2020-2021 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
* Copyright 2021 hfhbd and contributors. Use of this source code is governed by the Apache 2.0 license.
*/
pluginManagement {
includeBuild("gradle/build-logic")
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
plugins {
id("mySettings")
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("com.gradle.develocity") version "3.18.1"
}
develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/terms-of-service")
termsOfUseAgree.set("yes")
publishing {
val isCI = providers.environmentVariable("CI").isPresent
onlyIf {
isCI
}
}
tag("CI")
}
}
rootProject.name = "kotlinx-uuid"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
include(":kotlinx-uuid-core")
include(":kotlinx-uuid-sqldelight")
include(":kotlinx-uuid-datetime")