我有几个模块的pom。检查此模块的其中一个文件时:
./sources/target/build/xxxxx/xxxxx-2.13-jar-with-dependencies.jar
./compiled/target/build/xxxxx/xxxxx-2.13-jar-with-dependencies.jar
所需的结果如下(没有版本):
xxxxx-jar-with-dependencies.jar
我尝试了不同的方式,例如<finalName>
,<warName>
,<bundleFileName>
,<outputDirectory>
,<stripVersion>
,但它们似乎都没有效果,结果我通过使用他们中的大多数是:
./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
它是我需要的结果,但不是我想要的文件。