Skip to content

Commit 748f411

Browse files
committed
Fix removed deprecation
- Fix property values which doesn't exist in gradle zip task anymore. - Relates #821
1 parent 9de0999 commit 748f411

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-shell-samples/spring-shell-sample-catalog/spring-shell-sample-catalog.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ springBoot {
2020

2121
if (project.hasProperty('springShellSampleE2E') && springShellSampleE2E.toBoolean()) {
2222
bootJar {
23-
archiveName = "$baseName.$extension"
23+
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
2424
}
2525
}
2626

spring-shell-samples/spring-shell-sample-commands/spring-shell-sample-commands.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ springBoot {
2020

2121
if (project.hasProperty('springShellSampleE2E') && springShellSampleE2E.toBoolean()) {
2222
bootJar {
23-
archiveName = "$baseName.$extension"
23+
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
2424
}
2525
}
2626

spring-shell-samples/spring-shell-sample-e2e/spring-shell-sample-e2e.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ springBoot {
2020

2121
if (project.hasProperty('springShellSampleE2E') && springShellSampleE2E.toBoolean()) {
2222
bootJar {
23-
archiveName = "$baseName.$extension"
23+
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
2424
}
2525
}
2626

0 commit comments

Comments
 (0)