v0.8.14 set jvmTarget = "1.8"

This commit is contained in:
az 2021-08-08 16:27:21 +02:00
parent 5f55659785
commit 8b03b9f408
2 changed files with 13 additions and 6 deletions

11
.gitignore vendored
View file

@ -1,5 +1,6 @@
/.gradle/* /build/
/build/* /out/
/out/* /logs/
/.idea/* /.gradle/
*.log
/.idea/

View file

@ -18,12 +18,18 @@ apply plugin: 'kotlinx-serialization'
group = 'org.domaindrivenarchitecture.provs' group = 'org.domaindrivenarchitecture.provs'
version = '0.8.14-SNAPSHOT' version = '0.8.14'
repositories { repositories {
mavenCentral() mavenCentral()
} }
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
}
}
test { test {
// set properties for the tests // set properties for the tests
def propertiesForTests = ["testdockerwithoutsudo"] def propertiesForTests = ["testdockerwithoutsudo"]