v0.8.14 set jvmTarget = "1.8"
This commit is contained in:
parent
5f55659785
commit
8b03b9f408
2 changed files with 13 additions and 6 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
/.gradle/*
|
||||
/build/*
|
||||
/out/*
|
||||
/.idea/*
|
||||
*.log
|
||||
/build/
|
||||
/out/
|
||||
/logs/
|
||||
/.gradle/
|
||||
|
||||
/.idea/
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue