-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
31 lines (26 loc) · 1.09 KB
/
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
plugins {
kotlin("jvm")
}
group = "com.github.pgreze.aidea"
version = project.findProperty("aidea_version")?.toString() ?: "WIP"
subprojects {
plugins.withType(org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper::class) {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "11"
}
tasks.withType<Test> {
useJUnitPlatform()
testLogging { events("passed", "skipped", "failed") }
}
dependencies {
compileOnly(platform("org.jetbrains.kotlin:kotlin-bom:_"))
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation(platform(Testing.junit.bom))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
testImplementation("io.kotest:kotest-assertions-core:_")
}
}
}