Skip to content

Commit 66fedab

Browse files
committed
Fix jar archive filename configuration
Use .get() for lazy property evaluation to ensure jar files are named correctly (e.g., async.jar instead of malformed filenames).
1 parent ceb3d8e commit 66fedab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ subprojects {
9393
}
9494

9595
jar {
96-
archiveFileName = "${archiveBaseName}.${archiveExtension}"
96+
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
9797
}
9898

9999
task cleanServer {

0 commit comments

Comments
 (0)