Author: dennisl
Date: Tue Sep  2 18:18:10 2014
New Revision: 1622081

URL: http://svn.apache.org/r1622081
Log:
Require Maven 3.0.5+ to build Rat, but only require Maven 2.2.1+ to use Rat.
We need Maven 3 to get around the problem of "The projects in the reactor 
contain a cyclic reference" when the "rat" profile is activated.

Modified:
    creadur/rat/trunk/RELEASE_NOTES.txt
    creadur/rat/trunk/pom.xml

Modified: creadur/rat/trunk/RELEASE_NOTES.txt
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/RELEASE_NOTES.txt?rev=1622081&r1=1622080&r2=1622081&view=diff
==============================================================================
--- creadur/rat/trunk/RELEASE_NOTES.txt (original)
+++ creadur/rat/trunk/RELEASE_NOTES.txt Tue Sep  2 18:18:10 2014
@@ -1,7 +1,13 @@
+Rat 0.12
+========
+
+ * We now require Maven 3.0.5+ to build Rat, but as before we only require
+   Maven 2.2.1+ if you want to use Rat in your own Maven projects.
+
 Rat 0.11
 ========
 
- * RAT stays at compiler level 1.5 to be more compliant with other Maven 
plugins,
+ * Rat stays at compiler level 1.5 to be more compliant with other Maven 
plugins,
    fixed build/CI environment to reflect and ensure that.
  * Fixed Javadoc warnings during build, upgraded Maven Plugin Plugin to avoid
    warnings in generated code (https://jira.codehaus.org/browse/MPLUGIN-237)

Modified: creadur/rat/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/pom.xml?rev=1622081&r1=1622080&r2=1622081&view=diff
==============================================================================
--- creadur/rat/trunk/pom.xml (original)
+++ creadur/rat/trunk/pom.xml Tue Sep  2 18:18:10 2014
@@ -43,12 +43,14 @@ agnostic home for software distribution 
   </description>
   <inceptionYear>2006</inceptionYear>
   <prerequisites>
-    <maven>${mavenVersion}</maven>
+    <!-- This is the version of Maven required to build Rat -->
+    <maven>3.0.5</maven>
   </prerequisites>
   <properties>
     <javaVersion>1.5</javaVersion>
     <maven.compiler.source>${javaVersion}</maven.compiler.source>
     <maven.compiler.target>${javaVersion}</maven.compiler.target>
+    <!-- This is the version of Maven required to use the Rat Maven Plugin -->
     <mavenVersion>2.2.1</mavenVersion>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>


Reply via email to