prog8/codeOptimizers/build.gradle

45 lines
904 B
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 project(':compilerAst')
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"
// implementation "org.jetbrains.kotlin:kotlin-reflect"
}
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"
}
}
}
// note: there are no unit tests in this module!