我正在使用buildnumber-maven-plugin将最新的github提交中的内部版本号添加到生成的war的名称中:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<warName>${project.artifactId}-${buildNumber}</warName>
<webResources>
<resource>
<directory>${project.basedir}/src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
<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>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<shortRevisionLength>6</shortRevisionLength>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<war>target/${project.artifactId}-${buildNumber}.war</war>
<webApp>
<contextPath>/hope</contextPath>
<descriptor>${basedir}/target/WEB-INF/web.xml</descriptor>
</webApp>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>8080</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</plugin>
这正确地创建了一个带有提交ID的前6个字符的.war文件,并且在运行mvn jetty:run
时也能正常工作;但是,当我运行mvn jetty:run-war
时,我得到以下输出:
[INFO] Webapp assembled in [160 msecs]
[INFO] Building war: /home/jon/Projects/hope/hope/hope-web/target/hope-web-b242c0.war
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ hope-web ---
[INFO]
[INFO] <<< jetty-maven-plugin:9.0.5.v20130815:run-war (default-cli) @ hope-web <<<
[INFO]
[INFO] --- jetty-maven-plugin:9.0.5.v20130815:run-war (default-cli) @ hope-web ---
[INFO] Configuring Jetty for project: Website
[INFO] Context path = /hope
[INFO] Tmp directory = /home/jon/Projects/hope/hope/hope-web/target/tmp
[INFO] Web defaults = org/eclipse/jetty/webapp/webdefault.xml
[INFO] Web overrides = none
2013-10-29 12:49:34.920:INFO:oejs.Server:main: jetty-9.0.5.v20130815
2013-10-29 12:49:34.934:WARN:oejw.WebInfConfiguration:main: Web application not found /home/jon/Projects/hope/hope/hope-web/target/hope-web-${buildNumber}.war
2013-10-29 12:49:34.934:WARN:oejw.WebAppContext:main: Failed startup of context o.e.j.m.p.JettyWebAppContext@c638285{/hope,null,null}{/home/jon/Projects/hope/hope/hope-web/target/hope-web-${
buildNumber}.war}
java.io.FileNotFoundException: /home/jon/Projects/hope/hope/hope-web/target/hope-web-${buildNumber}.war
因此,即使该进程使用commit id构建.war文件,jetty也会查找带有buildnumber插件属性名称的war文件。
如何配置这些插件以便彼此协同工作?
答案 0 :(得分:0)
乔,
我不确定这是可能的。
jetty:run-war目标将分叉并行构建执行以确保构建战争(即mojo具有@execute phase =“package”)。 pom中$ {buildNumber}的替换发生在分叉执行中。它似乎没有替代运行jetty-maven-plugin的执行(假设它将以与第二次运行相同的方式计算)。不知道为什么会这样,但当然如果我修改jetty-maven-plugin打印出MavenProject代表其执行所知的所有属性,buildNumber就不存在了。但是,它存在于分叉的MavenProject所代表的属性上。可能会问一下buildnumber-maven-plugin项目有关吗?
BTW我甚至尝试通过设置改变你的例子: &LT; finalName&GT; $ {project.artifactId} - $ {buildNumber}&LT; / finalName&GT;
这意味着你可以删除&lt; warName&gt;来自maven-war-plugin设置。我希望它也会设置&lt; finalName&gt; jetty-maven-plugin执行的价值,但没有这样的运气。
欢呼声 扬