Skip to content

Commit 23fc14c

Browse files
committed
Fix Java 11 compatibility
Downgrade SmallRye 3.14.1 -> 3.10.2, and error_prone 2.43.0 -> 2.31.0
1 parent a73b97c commit 23fc14c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

gradle/libs.versions.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919

2020
[versions]
21-
errorprone = "2.43.0"
21+
errorprone = "2.31.0" # last version supporting JDK 11 https://github.com/google/error-prone/issues/3803#issuecomment-2344601626
2222
hadoop = "3.4.1"
2323
iceberg = "1.10.0" # When updating iceberg version, also update the iceberg test versions in gradle.properties
2424
immutables = "2.11.6"
@@ -64,7 +64,8 @@ nimbus-oauth2-oidc-sdk = { module = "com.nimbusds:oauth2-oidc-sdk", version.ref
6464
nimbus-jose-jwt = { module = "com.nimbusds:nimbus-jose-jwt", version.ref = "nimbus-jose-jwt" }
6565
s3mock-testcontainers = { module = "com.adobe.testing:s3mock-testcontainers", version = "4.9.1" }
6666
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
67-
smallrye-config = { module = "io.smallrye.config:smallrye-config", version = "3.14.1" }
67+
# Last version supporting JDK 11 https://github.com/smallrye/smallrye-config/pull/1287
68+
smallrye-config = { module = "io.smallrye.config:smallrye-config", version = { strictly = "3.10.2" } }
6869
testcontainers-bom = { module = "org.testcontainers:testcontainers-bom", version = "2.0.1" }
6970
testcontainers-keycloak = { module = "com.github.dasniko:testcontainers-keycloak", version = "3.9.0" }
7071

0 commit comments

Comments
 (0)