Fix final plugin jar's name being suffixed with '-Plugin'

The suffix comes from the module itself but this is the main artifact of the project.
This commit is contained in:
Christian Koop 2023-06-24 11:28:44 +02:00
parent 3967209265
commit a2ed4c8656
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
</goals>
<configuration>
<finalName>${project.name}-${project.version}</finalName>
<finalName>${project.parent.name}-${project.version}</finalName>
<shadedArtifactAttached>false</shadedArtifactAttached>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>