Author: bommel
Date: Tue Feb 10 14:05:25 2009
New Revision: 742971
URL: http://svn.apache.org/viewvc?rev=742971&view=rev
Log:
enable maven-enforcer-plugin update jsf 1.2 versions
Modified:
myfaces/tobago/trunk/pom.xml
Modified: myfaces/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/pom.xml?rev=742971&r1=742970&r2=742971&view=diff
==============================================================================
--- myfaces/tobago/trunk/pom.xml (original)
+++ myfaces/tobago/trunk/pom.xml Tue Feb 10 14:05:25 2009
@@ -129,11 +129,13 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
+ <version>2.0</version>
<configuration>
<tags>
<tag>TODO</tag>
@@ -171,7 +173,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.5</version>
+ <version>2.2</version>
<configuration>
<aggregate>true</aggregate>
<linksource>true</linksource>
@@ -232,6 +234,7 @@
<inherited>false</inherited>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changelog-maven-plugin</artifactId>
+ <version>2.0-beta-1</version>
<configuration>
<basedir>${basedir}</basedir>
</configuration>
@@ -251,16 +254,18 @@
</plugin>
-->
- <plugin>
+ <!--plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<minSeverity>info</minSeverity>
<excludes>
<exclude>org/apache/myfaces/tobago/example/**</exclude>
+ <exclude>org/apache/myfaces/tobago/ant/**</exclude>
+ <exclude>org/apache/myfaces/tobago/apt/**</exclude>
</excludes>
</configuration>
- </plugin>
+ </plugin-->
<!-- pmd has problems with annotations -->
<plugin>
@@ -300,12 +305,12 @@
</configuration>
</plugin>
- <!-- TODO test dashboard plugin
+ <!-- TODO test dashboard plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dashboard-maven-plugin</artifactId>
- <version>1.0-SNAPSHOT</version>
- </plugin> -->
+ <version>1.0.0-beta-1</version>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
@@ -320,7 +325,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
- <version>2.0-beta-1</version>
+ <version>2.0-beta-2</version>
</plugin>
<!-- http://jira.codehaus.org/browse/MJNCSS-4
@@ -339,6 +344,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rat-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
</plugin>
<plugin>
@@ -499,10 +505,10 @@
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.2</version>
</plugin>
- <!--<plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>1.0-alpha-3</version>
+ <version>1.0-alpha-4</version>
<executions>
<execution>
<id>enforce</id>
@@ -511,6 +517,9 @@
</goals>
<configuration>
<rules>
+ <requireMavenVersion>
+ <version>2.0.6</version>
+ </requireMavenVersion>
<requirePluginVersions>
<message>Best Practice is to always define plugin versions!</message>
<banLatest>true</banLatest>
@@ -518,13 +527,13 @@
</requirePluginVersions>
<requireJavaVersion>
<message>Tobago must be compiled with Java 5 or higher</message>
- <version>1.5.0</version>
+ <version>[1.5,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
- </plugin>-->
+ </plugin>
<!--<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
@@ -668,14 +677,15 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
</plugin>
- <plugin>
+ <!--plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
+ <version>2.2.1</version>
<configuration>
<failOnError>false</failOnError>
<minSeverity>info</minSeverity>
</configuration>
- </plugin>
+ </plugin-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
@@ -685,7 +695,18 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.3</version>
- </plugin>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>2.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.2</version>
+ </plugin>
+
</plugins>
</pluginManagement>
</build>
@@ -1160,9 +1181,9 @@
<properties>
<myfaces.version>1.1.6</myfaces.version>
- <myfaces12.version>1.2.4</myfaces12.version>
+ <myfaces12.version>1.2.6</myfaces12.version>
<sunjsf.version>1.1_02</sunjsf.version>
- <sunjsf12.version>1.2_10-b01</sunjsf12.version>
+ <sunjsf12.version>1.2_12</sunjsf12.version>
<facelets.version>1.1.14</facelets.version>
<jetty.version>6.1.11</jetty.version>
<common-io.version>1.1</common-io.version>
|