You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2008/11/01 20:21:51 UTC

svn commit: r709756 - /maven/shared/trunk/maven-reporting-impl/pom.xml

Author: hboutemy
Date: Sat Nov  1 12:21:50 2008
New Revision: 709756

URL: http://svn.apache.org/viewvc?rev=709756&view=rev
Log:
o added clirr report
o added mavenVersion property to enforce consistent versions on maven core dependencies
o upgraded plexus-utils to 1.5.6

Modified:
    maven/shared/trunk/maven-reporting-impl/pom.xml

Modified: maven/shared/trunk/maven-reporting-impl/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-impl/pom.xml?rev=709756&r1=709755&r2=709756&view=diff
==============================================================================
--- maven/shared/trunk/maven-reporting-impl/pom.xml (original)
+++ maven/shared/trunk/maven-reporting-impl/pom.xml Sat Nov  1 12:21:50 2008
@@ -31,6 +31,7 @@
   <name>Maven Reporting Implementation</name>
 
   <properties>
+    <mavenVersion>2.0.10-SNAPSHOT</mavenVersion>
     <doxiaVersion>1.0-beta-1-SNAPSHOT</doxiaVersion>
   </properties>
 
@@ -49,7 +50,7 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-project</artifactId>
-      <version>2.0.4</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>commons-validator</groupId>
@@ -69,17 +70,17 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0.4</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>2.0.10-SNAPSHOT</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
-      <version>1.1</version>
+      <version>1.5.6</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>
@@ -100,4 +101,21 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/trunk/maven-reporting-impl</developerConnection>
     <url>http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-impl</url>
   </scm>
+
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>clirr-maven-plugin</artifactId>
+            <configuration>
+              <comparisonVersion>2.0.4.1</comparisonVersion>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>