Maven - 如何摆脱模块名称中的模块版本?

时间:2016-02-02 12:01:01

标签: maven maven-3 maven-dependency-plugin maven-deploy-plugin

我有几个模块的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

它是我需要的结果,但不是我想要的文件。

0 个答案:

没有答案