Skip to content

Commit 0695033

Browse files
committed
Update gradle-oci to 0.21.0
1 parent 86f889e commit 0695033

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

build.gradle.kts

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -640,25 +640,23 @@ oci {
640640
entryPoint.addAll("-cp", "/app/classpath/*:/app/libs/*")
641641
entryPoint.add(application.mainClass)
642642
}
643-
layers {
644-
layer("libs") {
645-
contents {
646-
from(configurations.runtimeClasspath)
647-
into("app/libs")
648-
}
643+
layer("libs") {
644+
contents {
645+
from(configurations.runtimeClasspath)
646+
into("app/libs")
649647
}
650-
layer("jar") {
651-
contents {
652-
from(tasks.jar)
653-
into("app/classpath")
654-
rename(".*", "${project.name}-${project.version}.jar")
655-
}
648+
}
649+
layer("jar") {
650+
contents {
651+
from(tasks.jar)
652+
into("app/classpath")
653+
rename(".*", "${project.name}-${project.version}.jar")
656654
}
657-
layer("resources") {
658-
contents {
659-
from("src/distribution")
660-
into("app")
661-
}
655+
}
656+
layer("resources") {
657+
contents {
658+
from("src/distribution")
659+
into("app")
662660
}
663661
}
664662
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ graalvm-native = { id = "org.graalvm.buildtools.native", version = "0.10.4" }
8383
launch4j = { id = "edu.sc.seis.launch4j", version = "3.0.6" }
8484
license = { id = "com.github.hierynomus.license", version = "0.16.1" }
8585
nebula-ospackage = { id = "com.netflix.nebula.ospackage", version = "11.10.1" }
86-
oci = { id = "io.github.sgtsilvio.gradle.oci", version = "0.20.2" }
86+
oci = { id = "io.github.sgtsilvio.gradle.oci", version = "0.21.0" }
8787
openapi-generator = { id = "org.openapi.generator", version = "7.11.0" }
8888
shadow = { id = "com.github.johnrengelman.shadow", version = "8.1.1" }

0 commit comments

Comments
 (0)