mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
73 lines
1.4 KiB
Groovy
73 lines
1.4 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id "org.jetbrains.kotlin.jvm"
|
|
}
|
|
|
|
targetCompatibility = 11
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation 'org.antlr:antlr4-runtime:4.9.2'
|
|
implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12"
|
|
implementation project(':parser')
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5"
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
|
|
testImplementation 'org.hamcrest:hamcrest:2.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
|
|
}
|
|
|
|
configurations.all {
|
|
exclude group: 'com.ibm.icu', module: 'icu4j'
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
useIR = true
|
|
// verbose = true
|
|
// freeCompilerArgs += "-XXLanguage:+NewInference"
|
|
}
|
|
}
|
|
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
useIR = true
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ["${project.projectDir}/src"]
|
|
}
|
|
}
|
|
test {
|
|
java {
|
|
srcDirs = ["${project.projectDir}/test"]
|
|
}
|
|
resources {
|
|
srcDirs = ["${project.projectDir}/res"]
|
|
}
|
|
}
|
|
}
|
|
|
|
test {
|
|
// Enable JUnit 5 (Gradle 4.6+).
|
|
useJUnitPlatform()
|
|
|
|
// Always run tests, even when nothing changed.
|
|
dependsOn 'cleanTest'
|
|
|
|
// Show test results.
|
|
testLogging {
|
|
events "skipped", "failed"
|
|
}
|
|
}
|