prog8/codeGenCpu6502/build.gradle

63 lines
1.3 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 {
2022-03-10 22:08:41 +00:00
implementation project(':codeCore')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// implementation "org.jetbrains.kotlin:kotlin-reflect"
2024-05-12 01:02:54 +00:00
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0"
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"
}
}
2023-01-07 14:25:33 +00:00
test {
java {
srcDir "${project.projectDir}/test"
}
}
}
2023-01-07 14:25:33 +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"
}
}