2024-11-20 20:39:36 +00:00
|
|
|
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
|
|
|
|
plugins {
|
2024-11-28 02:49:07 +00:00
|
|
|
kotlin("jvm")
|
2024-11-20 20:39:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":codeCore"))
|
|
|
|
implementation(project(":compilerAst"))
|
2024-12-19 12:35:24 +00:00
|
|
|
// implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
2024-11-20 20:39:36 +00:00
|
|
|
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!
|