2021-10-29 03:00:30 +00:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'application'
|
|
|
|
id "org.jetbrains.kotlin.jvm"
|
|
|
|
}
|
|
|
|
|
2021-10-30 10:01:52 +00:00
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(javaVersion)
|
|
|
|
}
|
2021-10-29 03:00:30 +00:00
|
|
|
}
|
|
|
|
|
2021-12-04 17:36:47 +00:00
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 03:00:30 +00:00
|
|
|
dependencies {
|
2022-03-10 22:08:41 +00:00
|
|
|
implementation project(':codeCore')
|
2021-10-29 03:00:30 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
// implementation "org.jetbrains.kotlin:kotlin-reflect"
|
2023-07-06 21:13:00 +00:00
|
|
|
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18"
|
2021-10-29 03:00:30 +00:00
|
|
|
|
2023-11-22 17:40:07 +00:00
|
|
|
testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.8.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'
|
2021-10-29 03:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
2023-09-08 19:29:49 +00:00
|
|
|
srcDir "${project.projectDir}/src"
|
2021-10-29 03:00:30 +00:00
|
|
|
}
|
|
|
|
resources {
|
2023-09-08 19:29:49 +00:00
|
|
|
srcDir "${project.projectDir}/res"
|
2021-10-29 03:00:30 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-07 14:25:33 +00:00
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDir "${project.projectDir}/test"
|
|
|
|
}
|
|
|
|
}
|
2021-10-29 03:00:30 +00:00
|
|
|
}
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|