Moving jetty-version-maven-plugin to profile due to NPE on some people's machines

This commit is contained in:
Joakim Erdfelt 2011-08-18 14:23:56 -07:00
parent 64605e9129
commit 683d78aa18
1 changed files with 21 additions and 14 deletions

35
pom.xml
View File

@ -46,20 +46,6 @@
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-version-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>gen-versiontxt</id>
<phase>compile</phase>
<goals>
<goal>gen-version-text</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
@ -555,5 +541,26 @@
</plugins>
</build>
</profile>
<profile>
<id>vertext</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-version-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>gen-versiontxt</id>
<phase>compile</phase>
<goals>
<goal>gen-version-text</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>