plugins { id 'java' id 'application' id "org.jetbrains.kotlin.jvm" id 'com.github.johnrengelman.shadow' version '8.1.1' } java { toolchain { languageVersion = JavaLanguageVersion.of(javaVersion) } } compileKotlin { kotlinOptions { jvmTarget = javaVersion } } compileTestKotlin { kotlinOptions { jvmTarget = javaVersion } } dependencies { implementation project(':codeCore') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.6' implementation "com.github.hypfvieh:dbus-java:3.3.2" implementation "org.slf4j:slf4j-simple:2.0.9" } configurations.all { exclude group: 'com.ibm.icu', module: 'icu4j' exclude group: "org.antlr", module: "antlr4" } sourceSets { main { java { srcDir "${project.projectDir}/src" } resources { srcDir "${project.projectDir}/res" } } test { java { srcDir "${project.projectDir}/test" } } } startScripts.enabled = true application { mainClass = 'prog8.dbus.DbusserverKt' applicationName = 'prog8compilerservicedbus' } shadowJar { archiveBaseName = 'prog8compilerservicedbus' 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