prog8/codeCore/build.gradle

43 lines
813 B
Groovy
Raw Normal View History

2022-03-10 22:08:41 +00:00
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)
2022-03-10 22:08:41 +00:00
}
compileKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
dependencies {
// should have no dependencies to other modules
2022-03-10 22:08:41 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2024-05-12 01:02:54 +00:00
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0"
2022-03-10 22:08:41 +00:00
}
sourceSets {
main {
java {
2023-09-08 19:29:49 +00:00
srcDir "${project.projectDir}/src"
2022-03-10 22:08:41 +00:00
}
resources {
2023-09-08 19:29:49 +00:00
srcDir "${project.projectDir}/res"
2022-03-10 22:08:41 +00:00
}
}
}
// note: there are no unit tests in this module!