We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62ab172 commit 1c3d46dCopy full SHA for 1c3d46d
1 file changed
examples/cli-example/build.gradle.kts
@@ -14,14 +14,27 @@ repositories {
14
}
15
16
java {
17
- targetCompatibility = JavaVersion.VERSION_21
18
- sourceCompatibility = JavaVersion.VERSION_21
+ targetCompatibility = JavaVersion.VERSION_25
+ sourceCompatibility = JavaVersion.VERSION_25
19
20
21
jib {
22
container {
23
mainClass = "io.getunleash.example.AdvancedConstraints"
24
25
+ from {
26
+ image = "gcr.io/distroless/java25-debian13:latest"
27
+ platforms {
28
+ platform {
29
+ architecture = "amd64"
30
+ os = "linux"
31
+ }
32
33
+ architecture = "arm64"
34
35
36
37
38
39
40
dependencies {
0 commit comments