2022-03-18 23:57:35 +00:00
|
|
|
|
|
|
|
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"
|
2022-03-18 23:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(javaVersion)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-04-10 13:09:12 +00:00
|
|
|
implementation project(':codeCore')
|
2022-08-27 11:06:44 +00:00
|
|
|
implementation project(':intermediate')
|
2022-09-26 17:52:12 +00:00
|
|
|
implementation project(':codeGenIntermediate')
|
2022-03-18 23:57:35 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
2022-06-09 20:44:17 +00:00
|
|
|
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16"
|
2022-06-26 16:51:03 +00:00
|
|
|
testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.3.2'
|
2022-03-18 23:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDirs = ["${project.projectDir}/src"]
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs = ["${project.projectDir}/res"]
|
|
|
|
}
|
|
|
|
}
|
2022-03-30 19:44:48 +00:00
|
|
|
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDir "${project.projectDir}/test"
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 23:57:35 +00:00
|
|
|
}
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|