Skip to content

Commit

Permalink
Build in CI using JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 26, 2024
1 parent 0b020e0 commit 85b3728
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ resources:

jobs:
- template: azure/gradle/build.yml@templates
parameters:
jdkVersion: '1.17'
- template: azure/gradle/create_tag_version.yml@templates
- template: azure/gradle/upload_release.yml@templates
- template: azure/gradle/upload_snapshot.yml@templates
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id("net.researchgate.release") version "3.0.2"
id("com.bakdata.sonar") version "1.1.7"
id("com.bakdata.sonatype") version "1.1.7"
id("com.bakdata.sonar") version "1.1.9"
id("com.bakdata.sonatype") version "1.1.9"
id("org.hildan.github.changelog") version "1.12.1"
id("io.freefair.lombok") version "6.6.1"
}
Expand Down
7 changes: 7 additions & 0 deletions streams-bootstrap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,10 @@ dependencies {

testImplementation(group = "com.ginsberg", name = "junit5-system-exit", version = "1.1.2")
}

tasks.withType<Test> {
jvmArgs(
"--add-opens=java.base/java.lang=ALL-UNNAMED",
"--add-opens=java.base/java.util=ALL-UNNAMED"
)
}

0 comments on commit 85b3728

Please sign in to comment.