我有几个模块的 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
这是我需要的结果,但不是我想要的文件。