2020-12-27 06:21:39 +00:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'application'
|
2021-06-13 16:10:07 +00:00
|
|
|
id "org.jetbrains.kotlin.jvm"
|
2022-03-05 14:23:26 +00:00
|
|
|
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
2020-12-27 06:21:39 +00:00
|
|
|
}
|
|
|
|
|
2021-10-30 10:01:52 +00:00
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(javaVersion)
|
|
|
|
}
|
|
|
|
}
|
2020-12-27 06:21:39 +00:00
|
|
|
|
2021-12-04 17:36:47 +00:00
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 06:21:39 +00:00
|
|
|
dependencies {
|
2022-03-10 22:08:41 +00:00
|
|
|
implementation project(':codeCore')
|
2020-12-27 06:21:39 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
// implementation "org.jetbrains.kotlin:kotlin-reflect"
|
2023-03-26 19:27:57 +00:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.5'
|
|
|
|
implementation "com.github.hypfvieh:dbus-java:3.3.2"
|
|
|
|
implementation "org.slf4j:slf4j-simple:2.0.7"
|
2020-12-27 06:21:39 +00:00
|
|
|
}
|
|
|
|
|
2021-06-13 16:10:07 +00:00
|
|
|
configurations.all {
|
|
|
|
exclude group: 'com.ibm.icu', module: 'icu4j'
|
|
|
|
exclude group: "org.antlr", module: "antlr4"
|
|
|
|
}
|
|
|
|
|
2020-12-27 06:21:39 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDirs = ["${project.projectDir}/src"]
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs = ["${project.projectDir}/res"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDirs = ["${project.projectDir}/test"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 07:26:42 +00:00
|
|
|
startScripts.enabled = true
|
2020-12-27 06:21:39 +00:00
|
|
|
|
|
|
|
application {
|
2021-10-30 17:30:19 +00:00
|
|
|
mainClass = 'prog8.dbus.DbusserverKt'
|
2021-06-13 16:10:07 +00:00
|
|
|
applicationName = 'prog8compilerservicedbus'
|
2020-12-27 06:21:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
2020-12-27 07:26:42 +00:00
|
|
|
archiveBaseName = 'prog8compilerservicedbus'
|
2020-12-27 06:21:39 +00:00
|
|
|
archiveVersion = '1.0'
|
|
|
|
// minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
test {
|
|
|
|
// Enable JUnit 5 (Gradle 4.6+).
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
|
|
|
// Always run tests, even when nothing changed.
|
|
|
|
dependsOn 'cleanTest'
|
|
|
|
|
|
|
|
// Show test results.
|
|
|
|
testLogging {
|
|
|
|
events "skipped", "failed"
|
|
|
|
}
|
|
|
|
}
|
2021-10-30 10:01:52 +00:00
|
|
|
|
|
|
|
build.finalizedBy installDist, installShadowDist
|