[seam-commits] Seam SVN: r14902 - branches/enterprise/WFK-2_0/examples-ee6.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Jun 11 11:31:16 EDT 2012


Author: manaRH
Date: 2012-06-11 11:31:15 -0400 (Mon, 11 Jun 2012)
New Revision: 14902

Modified:
   branches/enterprise/WFK-2_0/examples-ee6/pom.xml
Log:
added plugins versions for examples

Modified: branches/enterprise/WFK-2_0/examples-ee6/pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/examples-ee6/pom.xml	2012-06-11 15:20:46 UTC (rev 14901)
+++ branches/enterprise/WFK-2_0/examples-ee6/pom.xml	2012-06-11 15:31:15 UTC (rev 14902)
@@ -8,7 +8,39 @@
 
     <name>Seam 2 EE 6 examples</name>
     <description>Examples for Seam 2 Framework in Java EE6 environment</description>
+    <url>http://seamframework.org/Seam2</url>
     
+    <licenses>
+        <license>
+            <name>LGPL</name>
+            <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
+        </license>
+    </licenses>
+
+    <developers>
+        <developer>
+            <name>JBoss Seam committers</name>
+        </developer>
+    </developers>
+
+    <mailingLists>
+        <mailingList>
+            <archive>http://lists.jboss.org/pipermail/seam-dev/</archive>
+            <name>Seam Developer List</name>
+        </mailingList>
+    </mailingLists>
+
+    <scm>
+        <connection>scm:svn:https://svn.jboss.org/repos/seam/branches/enterprise/WFK-2_0</connection>
+        <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/branches/enterprise/WFK-2_0</developerConnection>
+        <url>scm:svn:https://svn.jboss.org/repos/seam/branches/enterprise/WFK-2_0</url>
+    </scm>
+
+    <organization>
+        <name>Seam Framework</name>
+        <url>http://seamframework.org</url>
+    </organization>        
+    
     <properties>
         <!-- Excluded TestNG groups (ex: slow annotated tests won't run during 
             the test phase) -->
@@ -40,6 +72,25 @@
         <jboss.domain>default</jboss.domain>
         <catalina.home>${env.CATALINA_HOME}</catalina.home>
         <xml.namespace.aware>false</xml.namespace.aware>
+
+        <!-- ************** -->
+        <!-- Build settings -->
+        <!-- ************** -->
+    
+        <!-- Cross plugins settings -->
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    
+        <!-- maven-compiler-plugin -->
+        <maven.compiler.target>1.6</maven.compiler.target>
+        <maven.compiler.source>1.6</maven.compiler.source>
+    
+        <!--
+            Options to override the compiler arguments directly on the compiler arument line to separate between what
+            the IDE understands as the source level and what the Maven compiler actually use.
+        -->
+        <maven.compiler.argument.target>${maven.compiler.target}</maven.compiler.argument.target>
+        <maven.compiler.argument.source>${maven.compiler.source}</maven.compiler.argument.source>
+        
     </properties>
     
     <modules>
@@ -76,10 +127,27 @@
             <plugins>
                 <plugin>
                     <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.12</version>
                     <configuration>
                         <excludedGroups>${tests.excludedGroups}</excludedGroups>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <artifactId>maven-ear-plugin</artifactId>
+                    <version>2.7</version>
+                </plugin>
+                
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>build-helper-maven-plugin</artifactId>
+                    <version>1.7</version>
+                </plugin>
+                
+                <plugin>
+                    <artifactId>maven-resources-plugin</artifactId>
+                    <version>2.5</version>
+                </plugin>
+                
                 <!--This plugin's configuration is used to store Eclipse 
                     m2e settings only. It has no influence on the Maven build itself. -->
                 <plugin>
@@ -130,6 +198,7 @@
                 </plugin>
                 <plugin>
                     <artifactId>maven-war-plugin</artifactId>
+                    <version>2.1.1</version>
                     <inherited>true</inherited>
                     <configuration>
                         <failOnMissingWebXml>false</failOnMissingWebXml>



More information about the seam-commits mailing list