I have a pom for a couple of modules. When checking one of the files of this module:
./sources/target/build/xxxxx/xxxxx-2.13-jar-with-dependencies.jar
./compiled/target/build/xxxxx/xxxxx-2.13-jar-with-dependencies.jar
the required result is the following (without the version):
xxxxx-jar-with-dependencies.jar
I tried different ways like the <finalName>
, <warName>
, <bundleFileName>
, <outputDirectory>
, <stripVersion>
but none of them seems to be working, the result I am getting by using most of them is:
./sources/target/xxxxx-jar-with-dependencies.jar
./sources/target/build/xxxxx/xxxxx-2.13-jar-with-dependencies.jar
./target/xxxxx-jar-with-dependencies.jar
./compiled/target/xxxxx-jar-with-dependencies.jar
./compiled/target/build/xxxxx/xxxxx-2.13-jar-with-dependencies.jar
it's the result I need, but not on the files I want.