mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
62 lines
1.0 KiB
Groovy
62 lines
1.0 KiB
Groovy
|
|
||
|
plugins {
|
||
|
id 'java'
|
||
|
id 'application'
|
||
|
id "org.jetbrains.kotlin.jvm"
|
||
|
id "io.kotest" version "0.3.9"
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion = JavaLanguageVersion.of(javaVersion)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
compileKotlin {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = javaVersion
|
||
|
}
|
||
|
}
|
||
|
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = javaVersion
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':codeCore')
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||
|
testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.3.2'
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
java {
|
||
|
srcDirs = ["${project.projectDir}/src"]
|
||
|
}
|
||
|
resources {
|
||
|
srcDirs = ["${project.projectDir}/res"]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
java {
|
||
|
srcDir "${project.projectDir}/test"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
// Enable JUnit 5 (Gradle 4.6+).
|
||
|
useJUnitPlatform()
|
||
|
|
||
|
// Always run tests, even when nothing changed.
|
||
|
dependsOn 'cleanTest'
|
||
|
|
||
|
// Show test results.
|
||
|
testLogging {
|
||
|
events "skipped", "failed"
|
||
|
}
|
||
|
}
|