You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2009/09/22 21:31:22 UTC

svn commit: r817789 - /maven/plugins/trunk/pom.xml

Author: olamy
Date: Tue Sep 22 19:31:15 2009
New Revision: 817789

URL: http://svn.apache.org/viewvc?rev=817789&view=rev
Log:
add maven-3 profile to add maven-project-info-reports-plugin in the reactor build

Modified:
    maven/plugins/trunk/pom.xml

Modified: maven/plugins/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/pom.xml?rev=817789&r1=817788&r2=817789&view=diff
==============================================================================
--- maven/plugins/trunk/pom.xml (original)
+++ maven/plugins/trunk/pom.xml Tue Sep 22 19:31:15 2009
@@ -315,5 +315,17 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>maven-3</id> 
+      <activation>
+        <file>
+          <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) --> 
+          <exists>${basedir}</exists> 
+        </file>
+      </activation>
+      <modules>
+        <module>maven-project-info-reports-plugin</module>
+      </modules>
+    </profile> 
   </profiles>
 </project>