mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 00:31:56 +00:00
42 lines
817 B
Groovy
42 lines
817 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.jetbrains.kotlin.jvm"
|
|
}
|
|
|
|
java {
|
|
targetCompatibility = JavaLanguageVersion.of(javaVersion)
|
|
sourceCompatibility = JavaLanguageVersion.of(javaVersion)
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = javaVersion
|
|
}
|
|
}
|
|
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = javaVersion
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':codeCore')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
implementation "org.antlr:antlr4-runtime:4.13.1"
|
|
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0"
|
|
implementation project(':parser')
|
|
}
|
|
|
|
configurations.all {
|
|
exclude group: 'com.ibm.icu', module: 'icu4j'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir "${project.projectDir}/src"
|
|
}
|
|
}
|
|
}
|