File tree 1 file changed +4
-3
lines changed 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ plugins {
14
14
}
15
15
16
16
java {
17
- sourceCompatibility = JavaVersion .VERSION_11
18
- targetCompatibility = JavaVersion .VERSION_11
17
+ sourceCompatibility = JavaVersion .VERSION_1_8
18
+ targetCompatibility = JavaVersion .VERSION_1_8
19
19
}
20
20
21
21
// The releaseVersion property is set on official releases in the release.yml workflow.
@@ -141,7 +141,7 @@ tasks.withType<JavaCompile> {
141
141
dependsOn(" generateTestSources" )
142
142
if (JavaVersion .current().isJava9Compatible) {
143
143
doFirst {
144
- options.compilerArgs = mutableListOf (" --release" , " 11 " )
144
+ options.compilerArgs = mutableListOf (" --release" , " 8 " )
145
145
}
146
146
}
147
147
// Disable errorprone on generated code
@@ -271,6 +271,7 @@ dependencies {
271
271
implementation(enforcedPlatform(libs.cel))
272
272
implementation(libs.cel.core)
273
273
implementation(libs.guava)
274
+ implementation(libs.ipaddress)
274
275
275
276
buf(" build.buf:buf:${libs.versions.buf.get()} :${osdetector.classifier} @exe" )
276
277
You can’t perform that action at this time.
0 commit comments