Skip to content

Commit

Permalink
restore Java compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
geomagilles authored Mar 27, 2022
1 parent adcbd60 commit 41e4746
Show file tree
Hide file tree
Showing 8 changed files with 2,996 additions and 1 deletion.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,10 @@ subprojects {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}

// Keep this to tell compatibility to applications
tasks.withType<JavaCompile> {
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
}
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Ci.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object Ci {

// this is the version used for building snapshots
// .GITHUB_RUN_NUMBER-snapshot will be appended
private const val snapshotBase = "0.9.1"
private const val snapshotBase = "0.9.2"

private val githubRunNumber = System.getenv("GITHUB_RUN_NUMBER")

Expand Down
Loading

0 comments on commit 41e4746

Please sign in to comment.