mirror of
https://github.com/gotson/komga.git
synced 2025-12-27 11:00:24 +01:00
build: fix unpack task following Spring Boot 2.5 upgrade
This commit is contained in:
parent
101c6fd92d
commit
13856a5592
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ tasks {
|
|||
// unpack Spring Boot's fat jar for better Docker image layering
|
||||
register<JavaExec>("unpack") {
|
||||
dependsOn(bootJar)
|
||||
classpath = files(jar)
|
||||
classpath = files(bootJar)
|
||||
jvmArgs = listOf("-Djarmode=layertools")
|
||||
args = "extract --destination $buildDir/dependency".split(" ")
|
||||
doFirst {
|
||||
|
|
|
|||
Loading…
Reference in a new issue