-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathsettings.gradle.kts
29 lines (27 loc) · 1.03 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
pluginManagement {
repositories {
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlinx/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(":serialization")
project(":serialization").name = "kotlinx-datetime-serialization"
include(":js-without-timezones")
project(":js-without-timezones").name = "kotlinx-datetime-js-test-without-timezones"
include(":js-with-timezones")
project(":js-with-timezones").name = "kotlinx-datetime-js-test-with-timezones"
include(":benchmarks")