如何在命令行中重写 maven 属性?

我使用 Maven 3.0.4运行了下面的普通 pom。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>


<groupId>com.example</groupId>
<artifactId>test</artifactId>
<version>1.0</version>
<packaging>jar</packaging>


</project>

我试图像下面这样覆盖命令行中的默认设置:

mvn -Dproject.build.finalName=build clean package

但是这个被忽略了,我得到了 test-1.0.jar。我尝试过更改另一个属性,如 outputDirectory、目录、 artifactId,但也失败了。

做这件事的正确方法是什么?

133442 次浏览

See Introduction to the POM

finalName is created as:

<build>
<finalName>${project.artifactId}-${project.version}</finalName>
</build>

One of the solutions is to add own property:

<properties>
<finalName>${project.artifactId}-${project.version}</finalName>
</properties>
<build>
<finalName>${finalName}</finalName>
</build>

And now try:

mvn -DfinalName=build clean package