diff --git a/build.gradle b/build.gradle index 8504e74..8ad837c 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ subprojects { apply plugin: 'kotlin' group = "com.omarsmak.kafka.consumer.lag.monitoring" - version = '0.1.2-SNAPSHOT' + version = '0.1.1' ext { libraryName = "kafka-consumer-lag-monitoring" @@ -139,7 +139,7 @@ configure(subprojects.findAll { it.name.contains("component") }) { // First stage: build our native image inside a docker image - from new Dockerfile.From("ghcr.io/graalvm/graalvm-ce:${graalNativeImageVersion}-java11").withStage("build") + from new Dockerfile.From("ghcr.io/graalvm/graalvm-ce:${graalNativeImageVersion}").withStage("build") workingDir "/app" copyFile componentFullName + "*all.jar", "/app/jar/application.jar" runCommand "gu install native-image" diff --git a/gradle.properties b/gradle.properties index e77aa91..58207ea 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ mordantVersion = 1.2.1 slf4jVersion = 1.7.30 log4jSlf4jImplVersion = 2.13.3 mockkVersion = 1.9.3 -graalNativeImageVersion = 20.2.0 +graalNativeImageVersion = 21.1.0 jacksonDatabindVersion = 2.11.3