Skip to content

Commit e756287

Browse files
committed
fix: default to jdk 11
1 parent 395e0e3 commit e756287

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build-logic/src/main/kotlin/buildlogic.java-conventions.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ version = "1.0.0-SNAPSHOT"
1616

1717
java {
1818
withSourcesJar()
19-
sourceCompatibility = JavaVersion.VERSION_17
20-
targetCompatibility = JavaVersion.VERSION_17
19+
sourceCompatibility = JavaVersion.VERSION_11
20+
targetCompatibility = JavaVersion.VERSION_11
2121
}
2222

2323
publishing {

core/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ description = "import-spec"
2222

2323
java {
2424
withJavadocJar()
25-
sourceCompatibility = JavaVersion.VERSION_17
26-
targetCompatibility = JavaVersion.VERSION_17
25+
sourceCompatibility = JavaVersion.VERSION_11
26+
targetCompatibility = JavaVersion.VERSION_11
2727
}
2828

2929
tasks {

0 commit comments

Comments
 (0)