prog8/codeCore/build.gradle

43 lines
813 B
Groovy
Raw Normal View History

2022-03-10 23:08:41 +01:00
plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm"
}
java {
2024-05-18 20:25:44 +02:00
targetCompatibility = JavaLanguageVersion.of(javaVersion)
sourceCompatibility = JavaLanguageVersion.of(javaVersion)
2022-03-10 23:08:41 +01:00
}
compileKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
dependencies {
// should have no dependencies to other modules
2022-03-10 23:08:41 +01:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2024-05-12 03:02:54 +02:00
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0"
2022-03-10 23:08:41 +01:00
}
sourceSets {
main {
java {
2023-09-08 21:29:49 +02:00
srcDir "${project.projectDir}/src"
2022-03-10 23:08:41 +01:00
}
resources {
2023-09-08 21:29:49 +02:00
srcDir "${project.projectDir}/res"
2022-03-10 23:08:41 +01:00
}
}
}
// note: there are no unit tests in this module!