我有一个使用buildnumber-maven-plugin
的maven项目。如果我运行mvn validate
我发现它正在运行:
[INFO] --- buildnumber-maven-plugin:1.3:create (default) @ myproject ---
[INFO] Executing: /bin/sh -c cd /Users/rob/Workspace/myproject && git rev-parse --verify HEAD
[INFO] Storing buildNumber: 5d315d8d1a43c3289fbf114c379fa1a3d3787044 at timestamp: 1477059166424
但是,如果我运行mvn resources:resources
,则过滤后的文件不会启动它:
[INFO] --- maven-resources-plugin:2.6:resources (default-cli) @ myproject ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
pom.xml
有:
<build>
...
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>version.txt</include>
</includes>
</resource>
version.txt
有:
${buildNumber}
但是在maven运行之后,没有过滤:
> cat target/classes/version.txt
${buildNumber}
pom.xml
中的内部版本号配置:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<phase>validate</phase>
<goals><goal>create</goal></goals>
</execution>
我不太了解Maven。不应该运行资源“目标”也获得buildNumber
属性?
答案 0 :(得分:1)
您执行的命令有所不同:
mvn validate
执行maven阶段“valdate”:意思是之前的all phases(在这种情况下没有)
mvn resources:resources
是执行resources plugin目标“资源”的快捷方式。实际上它是执行的快捷方式:org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources
。这些短名称由maven解析,对于Apache命名空间中的插件非常典型。
正如您在maven life-cycle page上看到的那样,您可能会寻找的目标是:“mvn process-resources
”。该阶段有一个默认插件绑定到“resources:resources
”,它将运行资源插件。由于您执行阶段之前所有阶段都将运行,包括内部版本号插件。
“:”表示maven命令行的区别。