Skip to content

Commit

Permalink
fix: Executable JAR: Include project version in final name (#3090)
Browse files Browse the repository at this point in the history
  • Loading branch information
apophizzz authored Nov 15, 2024
1 parent 82e30ab commit 97de002
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,8 @@
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- below two line make sure the fat jar is sharing the same name
as of project name -->
<finalName>${project.artifactId}</finalName>
<!-- below two line make sure the fat jar is sharing the same name as of project name -->
<finalName>${project.artifactId}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
Expand Down

0 comments on commit 97de002

Please sign in to comment.