-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
39 lines (34 loc) · 1001 Bytes
/
build.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
import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jetbrains.kotlin.gradle.tasks.UsesKotlinJavaToolchain
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(deps.plugins.jvm)
alias(deps.plugins.versions)
}
allprojects {
plugins.withType<KotlinPluginWrapper> {
dependencies {
implementation(kotlin("stdlib"))
}
}
tasks.withType<Test> {
dependencies {
testImplementation(kotlin("test"))
}
}
tasks.withType<KotlinCompile> {
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(18))
}
}
}
tasks.withType<UsesKotlinJavaToolchain>().configureEach {
kotlinJavaToolchain.toolchain.use(
project.extensions.getByType<JavaToolchainService>().launcherFor {
languageVersion.set(JavaLanguageVersion.of(18))
}
)
}
}