mirror of
https://github.com/irmen/prog8.git
synced 2024-11-01 00:10:48 +00:00
43 lines
783 B
Groovy
43 lines
783 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.jetbrains.kotlin.jvm"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = 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.10.1'
|
|
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16"
|
|
implementation project(':parser')
|
|
}
|
|
|
|
configurations.all {
|
|
exclude group: 'com.ibm.icu', module: 'icu4j'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ["${project.projectDir}/src"]
|
|
}
|
|
}
|
|
}
|