Skip to content

Commit

Permalink
jar filename properties not being resolved properly, so reverting to …
Browse files Browse the repository at this point in the history
…older deprecated properties that are working
  • Loading branch information
hansenmc committed Mar 15, 2021
1 parent 5e46e8a commit c204df6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ shadowJar {
include(dependency('org.webjars:.*'))
}
//generate same name as the jar task would
archiveFileName = "${archiveBaseName}-${archiveVersion}.${archiveExtension}"
//archiveFileName = "${archiveBaseName}-${archiveVersion}.${archiveExtension}"
archiveFileName = "${baseName}-${version}.${extension}"
manifest {
attributes 'Application-Version': project.version
attributes 'Build-date' : new Date()
Expand Down

0 comments on commit c204df6

Please sign in to comment.