prog8/intermediate/build.gradle

62 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm"
}
java {
2024-05-18 18:25:44 +00:00
targetCompatibility = JavaLanguageVersion.of(javaVersion)
sourceCompatibility = JavaLanguageVersion.of(javaVersion)
}
compileKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
dependencies {
implementation project(':codeCore')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2024-05-12 01:02:54 +00:00
testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.9.0'
2024-02-22 09:34:51 +00:00
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
sourceSets {
main {
java {
2023-09-08 19:29:49 +00:00
srcDir "${project.projectDir}/src"
}
resources {
2023-09-08 19:29:49 +00:00
srcDir "${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"
}
}