[seam-commits] Seam SVN: r10888 - modules/trunk/parent.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon May 11 22:46:28 EDT 2009


Author: dan.j.allen
Date: 2009-05-11 22:46:28 -0400 (Mon, 11 May 2009)
New Revision: 10888

Modified:
   modules/trunk/parent/pom.xml
Log:
reorg
add maven eclipse configuration


Modified: modules/trunk/parent/pom.xml
===================================================================
--- modules/trunk/parent/pom.xml	2009-05-12 02:42:04 UTC (rev 10887)
+++ modules/trunk/parent/pom.xml	2009-05-12 02:46:28 UTC (rev 10888)
@@ -102,39 +102,40 @@
       <module>../view</module>
    </modules>
 
+   <dependencies>
+
+      <dependency>
+         <groupId>org.jboss.ejb3</groupId>
+         <artifactId>jboss-ejb3-api</artifactId>
+         <scope>test</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.test-harness</groupId>
+         <artifactId>jboss-test-harness</artifactId>
+         <scope>test</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+
+      <dependency>
+         <groupId>${webbeans.groupId}</groupId>
+         <artifactId>webbeans-core-test</artifactId>
+         <scope>test</scope>
+      </dependency>
+
+   </dependencies>
+
    <build>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>attach-sources</id>
-                  <phase>verify</phase>
-                  <goals>
-                     <goal>jar</goal>
-                  </goals>
-               </execution>
-            </executions>
-         </plugin>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-enforcer-plugin</artifactId>
-         </plugin>
-         <plugin>
-           <groupId>org.apache.maven.plugins</groupId>
-           <artifactId>maven-release-plugin</artifactId>
-           <version>2.0-beta-8</version>
-           <configuration>
-             <tagBase>https://svn.jboss.org/repos/webbeans/ri/tags</tagBase>
-             <autoVersionSubmodules>true</autoVersionSubmodules>
-           </configuration>
-         </plugin>
-      </plugins>
       <defaultGoal>package</defaultGoal>
-
       <pluginManagement>
          <plugins>
+
             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
@@ -143,8 +144,19 @@
                   <target>1.5</target>
                </configuration>
             </plugin>
+
             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-eclipse-plugin</artifactId>
+               <configuration>
+                  <classpathContainers>
+                     <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5</classpathContainer>
+                  </classpathContainers>
+               </configuration>
+            </plugin>
+
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                   <archive>
@@ -159,6 +171,7 @@
                   </archive>
                </configuration>
             </plugin>
+
             <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>emma-maven-plugin</artifactId>
@@ -168,38 +181,59 @@
                   <outputDirectory>${project.build.directory}/generated-classes</outputDirectory>
                </configuration>
             </plugin>
+
          </plugins>
       </pluginManagement>
-   </build>
+      <plugins>
 
-   <dependencies>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>attach-sources</id>
+                  <phase>verify</phase>
+                  <goals>
+                     <goal>jar</goal>
+                  </goals>
+               </execution>
+            </executions>
+         </plugin>
 
-      <dependency>
-         <groupId>org.jboss.ejb3</groupId>
-         <artifactId>jboss-ejb3-api</artifactId>
-         <scope>test</scope>
-      </dependency>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+         </plugin>
 
-      <dependency>
-         <groupId>org.jboss.test-harness</groupId>
-         <artifactId>jboss-test-harness</artifactId>
-         <scope>test</scope>
-      </dependency>
+         <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+           <artifactId>maven-release-plugin</artifactId>
+           <version>2.0-beta-8</version>
+           <configuration>
+             <tagBase>https://svn.jboss.org/repos/webbeans/ri/tags</tagBase>
+             <autoVersionSubmodules>true</autoVersionSubmodules>
+           </configuration>
+         </plugin>
 
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
+      </plugins>
+   </build>
 
-      <dependency>
-         <groupId>${webbeans.groupId}</groupId>
-         <artifactId>webbeans-core-test</artifactId>
-         <scope>test</scope>
-      </dependency>
-
-   </dependencies>
+   <reporting>
+      <plugins>
+         <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>cobertura-maven-plugin</artifactId>
+            <configuration>
+               <formats>
+                  <format>html</format>
+                  <format>xml</format>
+               </formats>
+               <instrumentation>
+               </instrumentation>
+            </configuration>
+         </plugin>
+      </plugins>
+   </reporting>
    
    <profiles>
 
@@ -278,22 +312,5 @@
          <url>dav:https://snapshots.jboss.org/maven2</url>
       </snapshotRepository>
    </distributionManagement>
-
-   <reporting>
-      <plugins>
-         <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>cobertura-maven-plugin</artifactId>
-            <configuration>
-               <formats>
-                  <format>html</format>
-                  <format>xml</format>
-               </formats>
-               <instrumentation>
-               </instrumentation>
-            </configuration>
-         </plugin>
-      </plugins>
-   </reporting>
    
 </project>




More information about the seam-commits mailing list