prog8/dbusCompilerService/build.gradle

85 lines
1.6 KiB
Groovy
Raw Normal View History

2020-12-27 06:21:39 +00:00
plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm"
2024-02-22 09:34:51 +00:00
id 'com.github.johnrengelman.shadow' version '8.1.1'
2020-12-27 06:21:39 +00:00
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(javaVersion)
}
}
2020-12-27 06:21:39 +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-09-08 19:29:49 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.6'
2023-03-26 19:27:57 +00:00
implementation "com.github.hypfvieh:dbus-java:3.3.2"
2023-09-08 19:29:49 +00:00
implementation "org.slf4j:slf4j-simple:2.0.9"
2020-12-27 06:21:39 +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 {
2023-09-08 19:29:49 +00:00
srcDir "${project.projectDir}/src"
2020-12-27 06:21:39 +00:00
}
resources {
2023-09-08 19:29:49 +00:00
srcDir "${project.projectDir}/res"
2020-12-27 06:21:39 +00:00
}
}
test {
java {
2023-09-08 19:29:49 +00:00
srcDir "${project.projectDir}/test"
2020-12-27 06:21:39 +00:00
}
}
}
startScripts.enabled = true
2020-12-27 06:21:39 +00:00
application {
mainClass = 'prog8.dbus.DbusserverKt'
applicationName = 'prog8compilerservicedbus'
2020-12-27 06:21:39 +00:00
}
shadowJar {
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"
}
}
build.finalizedBy installDist, installShadowDist