-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
31 lines (29 loc) · 1.28 KB
/
settings.gradle.kts
File metadata and controls
31 lines (29 loc) · 1.28 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
pluginManagement {
repositories {
maven(url = "https://packages.jetbrains.team/maven/p/kotlinx-team-infra/maven")
mavenCentral()
gradlePluginPortal()
}
val dokkaVersion: String by settings
val benchmarksVersion: String by settings
val bcvVersion: String by settings
plugins {
id("org.jetbrains.dokka") version dokkaVersion
id("me.champeau.jmh") version benchmarksVersion
id("org.jetbrains.kotlinx.binary-compatibility-validator") version bcvVersion
}
}
rootProject.name = "Kotlin-DateTime-library"
include(":core")
project(":core").name = "kotlinx-datetime"
include(":timezones/full")
project(":timezones/full").name = "kotlinx-datetime-zoneinfo"
include(":integration-testing/serialization")
project(":integration-testing/serialization").name = "kotlinx-datetime-serialization"
include(":integration-testing/js-without-timezones")
project(":integration-testing/js-without-timezones").name = "kotlinx-datetime-js-test-without-timezones"
include(":integration-testing/js-with-timezones")
project(":integration-testing/js-with-timezones").name = "kotlinx-datetime-js-test-with-timezones"
include(":integration-testing/jpms-test")
project(":integration-testing/jpms-test").name = "kotlinx-datetime-test-with-jpms"
include(":benchmarks")