fix: Executable JAR: Include project version in final name (#3090)

This commit is contained in:
Patrick Kleindienst
2024-11-15 20:04:25 +01:00
committed by GitHub
parent 82e30ab717
commit 97de002348
+2 -3
View File
@@ -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>