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 2009/05/02 15:33:55 UTC

svn commit: r770953 - /maven/mercury/trunk/pom.xml

Author: hboutemy
Date: Sat May  2 13:33:55 2009
New Revision: 770953

URL: http://svn.apache.org/viewvc?rev=770953&view=rev
Log:
let Modello generate classes with Java5 typed collections

Modified:
    maven/mercury/trunk/pom.xml

Modified: maven/mercury/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/pom.xml?rev=770953&r1=770952&r2=770953&view=diff
==============================================================================
--- maven/mercury/trunk/pom.xml (original)
+++ maven/mercury/trunk/pom.xml Sat May  2 13:33:55 2009
@@ -88,9 +88,9 @@
     <sat4j.version>2.0.4</sat4j.version>
     <ant.version>1.7.1</ant.version>
 
-    <!-- 
+    <!--
            maven version: non-modules only !!
-           Never use in Mercury modules because Mercury does not depend on Maven 
+           Never use in Mercury modules because Mercury does not depend on Maven
     -->
     <maven.version>3.0-SNAPSHOT</maven.version>
     <modello.version>1.0.1</modello.version>
@@ -162,7 +162,7 @@
         <artifactId>org.sat4j.pb</artifactId>
         <version>${sat4j.version}</version>
       </dependency>
-<!-- 
+<!--
       <dependency>
         <groupId>org.sonatype.appbooter</groupId>
         <artifactId>plexus-forked-app-booter</artifactId>
@@ -263,7 +263,7 @@
         <artifactId>plexus-component-metadata</artifactId>
         <version>${plexus.component.metadata.version}</version>
       </dependency>
-      
+
       <dependency>
         <groupId>org.sonatype.spice</groupId>
         <artifactId>model-builder</artifactId>
@@ -403,6 +403,9 @@
           <groupId>org.codehaus.modello</groupId>
           <artifactId>modello-maven-plugin</artifactId>
           <version>1.0.1</version>
+          <configuration>
+            <useJava5>true</useJava5>
+          </configuration>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -600,10 +603,10 @@
     </profile>
 
     <profile>
-    	<id>run-its</id>
-    	<modules>
-    		<module>mercury-it</module>
-    	</modules>
+      <id>run-its</id>
+      <modules>
+        <module>mercury-it</module>
+      </modules>
     </profile>
   </profiles>
 </project>