我在Maven给自己一个速成课程,偶然发现了一个名为buildnumber的好插件:http://www.mojohaus.org/buildnumber-maven-plugin/create-mojo.html
我已经设置了一个非常简陋的初学者项目,并且在pom.xml文件中我成功地使用了$ {buildNumber}进行插值。
我有下面的pom.xml(我为它的长度道歉)。
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>my-app</name>
<url>http://maven.apache.org</url>
<scm>
<connection>scm:git:ssh://git@bitbucket.org/XXXX/bb101repo.git</connection>
<developerConnection>scm:git:ssh://git@bitbucket.org/XXX/bb101repo.git</developerConnection>
<url>https://bitbucket.org/XXXX/bb101repo.git</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<shortRevisionLength>5</shortRevisionLength>
<!-- doCheck : Check for locally modified files. If true build will fail if local modifications have not been commited -->
<!-- doUpdate : Update the local copy of your repo. If true the plugin will update your local files with the remote modifications before building -->
<doCheck>true</doCheck>
<doUpdate>false</doUpdate>
</configuration>
</plugin>
</plugins>
<finalName>${project.artifactId}-${project.version}-${buildNumber}</finalName>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
当我运行mvn包时,它按预期工作。
我的项目(在src下)有另一个名为info.xml的文件,它在下面。
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>FMS Help</display-name>
<version>${buildNumber}</version>
</web-app>
如何让$ {buildNumber}在我的标记下解压缩目标?
我猜这是一个非常简单的解决方案,但我很难过。再一次,我在Maven是一个完整的n00b,任何指向正确方向的人都会受到赞赏。 JW
答案 0 :(得分:1)
您需要告诉Maven对您的资源应用过滤。查看资源插件文档: http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html
为避免对所有源文件应用过滤,您需要设置正确的包含/排除路径或将info.xml文件移动到资源目录。