-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (28 loc) · 1000 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
33 lines (28 loc) · 1000 Bytes
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
pluginManagement {
repositories {
maven("https://packages.jetbrains.team/maven/p/kotlinx-team-infra/maven")
gradlePluginPortal()
val kotlinRepoUrl = providers.gradleProperty("kotlin_repo_url").orNull
if (kotlinRepoUrl != null) {
maven(kotlinRepoUrl)
}
}
val dokkaVersion: String by settings
val kotlinxBenchmarkVersion: String by settings
val koverVersion: String by settings
plugins {
id("org.jetbrains.dokka") version dokkaVersion
id("org.jetbrains.kotlinx.benchmark") version kotlinxBenchmarkVersion
id("org.jetbrains.kotlinx.kover") version koverVersion
}
}
plugins {
id("org.jetbrains.kotlinx.artifacts-validator-plugin") version "0.0.2"
}
rootProject.name = "Kotlin-Immutable-Collections" // TODO: Make readable name when it's not used in js module names
include(":core")
project(":core").name="kotlinx-collections-immutable"
include(
":benchmarks",
":benchmarks:runner"
)