mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
38 lines
839 B
Plaintext
38 lines
839 B
Plaintext
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
id("java")
|
|
id("application")
|
|
id("org.jetbrains.kotlin.jvm")
|
|
}
|
|
|
|
java {
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions.jvmTarget = JvmTarget.JVM_11
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation(project(":codeCore"))
|
|
implementation(project(":compilerAst"))
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
implementation("com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0")
|
|
// implementation "org.jetbrains.kotlin:kotlin-reflect"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir("${project.projectDir}/src")
|
|
}
|
|
resources {
|
|
srcDir("${project.projectDir}/res")
|
|
}
|
|
}
|
|
}
|
|
|
|
// note: there are no unit tests in this module! |