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/*
/out/*
/.idea/*
*.log
/build/
/out/
/logs/
/.gradle/
/.idea/

View file

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