prog8/dbusCompilerService/build.gradle

97 lines
2.0 KiB
Groovy
Raw Normal View History

2020-12-27 06:21:39 +00:00
plugins {
id 'java'
id 'application'
2021-05-29 13:25:17 +00:00
id "org.jetbrains.kotlin.jvm" version "1.5.10"
2020-12-27 23:45:20 +00:00
id 'com.github.johnrengelman.shadow' version '6.1.0'
2020-12-27 06:21:39 +00:00
}
targetCompatibility = 11
sourceCompatibility = 11
repositories {
mavenLocal()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// implementation "org.jetbrains.kotlin:kotlin-reflect"
2021-03-31 18:50:13 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.2'
2020-12-27 06:21:39 +00:00
implementation "com.github.hypfvieh:dbus-java:3.2.4"
implementation "org.slf4j:slf4j-simple:1.7.30"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testImplementation 'org.hamcrest:hamcrest-junit:2.0.0.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
}
compileKotlin {
kotlinOptions {
jvmTarget = "11"
// verbose = true
// freeCompilerArgs += "-XXLanguage:+NewInference"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "11"
}
}
sourceSets {
main {
java {
srcDirs = ["${project.projectDir}/src"]
}
resources {
srcDirs = ["${project.projectDir}/res"]
}
}
test {
java {
srcDirs = ["${project.projectDir}/test"]
}
}
}
startScripts.enabled = true
2020-12-27 06:21:39 +00:00
application {
2020-12-27 23:45:20 +00:00
mainClass = 'prog8.dbus.TestdbusKt'
mainClassName = 'prog8.dbus.TestdbusKt' // deprecated
2020-12-27 06:21:39 +00:00
applicationName = 'testdbus'
}
artifacts {
archives shadowJar
}
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"
}
}
task wrapper(type: Wrapper) {
2020-12-27 23:45:20 +00:00
gradleVersion = '6.7'
2020-12-27 06:21:39 +00:00
}