prog8/virtualmachine/build.gradle

64 lines
1.2 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm"
2022-03-30 19:44:48 +00:00
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 project(':intermediate')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2023-07-06 21:13:00 +00:00
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18"
2023-11-22 17:40:07 +00:00
testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.8.0'
}
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"
}
}
2022-03-30 19:44:48 +00:00
test {
java {
srcDir "${project.projectDir}/test"
}
}
}
2022-03-30 19:44:48 +00:00
test {
// Enable JUnit 5 (Gradle 4.6+).
useJUnitPlatform()
// Always run tests, even when nothing changed.
dependsOn 'cleanTest'
// Show test results.
testLogging {
events "skipped", "failed"
}
}