[seam-commits] Seam SVN: r11835 - in build/trunk: parent and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Dec 16 13:54:58 EST 2009


Author: pete.muir at jboss.org
Date: 2009-12-16 13:54:58 -0500 (Wed, 16 Dec 2009)
New Revision: 11835

Added:
   build/trunk/parent/
   build/trunk/parent/pom.xml
Removed:
   build/trunk/pom.xml
Modified:
   build/trunk/checkout.sh
Log:
move stuff around, updates to parent

Modified: build/trunk/checkout.sh
===================================================================
--- build/trunk/checkout.sh	2009-12-16 16:43:08 UTC (rev 11834)
+++ build/trunk/checkout.sh	2009-12-16 18:54:58 UTC (rev 11835)
@@ -23,7 +23,7 @@
 SVNARGS=
 SVNUPDATE=1
 
-MODULES="remoting bpm captcha drools excel faces framework international jms mail pdf persistence resteasy rss security"
+MODULES="remoting bpm captcha drools excel faces framework international jms mail pdf persistence resteasy security"
 
 while getopts “h:r:d:v” OPTION
 do

Added: build/trunk/parent/pom.xml
===================================================================
--- build/trunk/parent/pom.xml	                        (rev 0)
+++ build/trunk/parent/pom.xml	2009-12-16 18:54:58 UTC (rev 11835)
@@ -0,0 +1,125 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+
+   <groupId>org.jboss.seam</groupId>
+   <artifactId>seam-parent</artifactId>
+   <packaging>pom</packaging>
+   <version>3.0.0-SNAPSHOT</version>
+   <name>Seam Parent</name>
+
+   <parent>
+      <groupId>org.jboss.weld</groupId>
+      <artifactId>weld-parent</artifactId>
+      <version>8</version>
+   </parent>
+
+   <description>
+      The Parent for Seam modules
+   </description>
+
+   <url>http://www.seamframework.org</url>
+
+   <licenses>
+      <license>
+         <name>GNU Lesser General Public License, Version 2.1</name>
+         <distribution>repo</distribution>
+         <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
+      </license>
+   </licenses>
+
+   <developers>
+      <developer>
+         <name>Seam committers</name>
+      </developer>
+   </developers>
+
+   <!-- Dependency management, including extra repositories if needed -->
+   <repositories>
+      <repository>
+         <id>repository.jboss.org</id>
+         <name>JBoss Release Repository</name>
+         <url>http://repository.jboss.org/maven2</url>
+         <releases>
+            <enabled>true</enabled>
+         </releases>
+         <snapshots>
+            <enabled>false</enabled>
+         </snapshots>
+      </repository>
+      <repository>
+         <id>oss.sonatype.org/jboss-snapshots</id>
+         <name>JBoss (Nexus) Snapshots Repository</name>
+         <url>http://oss.sonatype.org/content/repositories/jboss-snapshots</url>
+         <releases>
+            <enabled>false</enabled>
+         </releases>
+         <snapshots>
+            <enabled>true</enabled>
+            <updatePolicy>never</updatePolicy>
+         </snapshots>
+      </repository>
+   </repositories>
+
+   <pluginRepositories>
+      <pluginRepository>
+         <id>repository.jboss.org</id>
+         <name>JBoss Repository</name>
+         <url>http://repository.jboss.org/maven2</url>
+      </pluginRepository>
+   </pluginRepositories>
+
+   <properties>
+      <seam.version>3.0.0-SNAPSHOT</seam.version>
+      <testng.version>5.10</testng.version>
+      <slf4j.version>1.5.9.RC1</slf4j.version>
+      <jboss.test.harness.version>1.1.0-CR3</jboss.test.harness.version>
+      <weld.version>1.0.0</weld.version>
+   </properties>
+
+   <dependencyManagement>
+      <dependencies>
+
+         <dependency>
+            <groupId>org.jboss.seam</groupId>
+            <artifactId>seam-bom</artifactId>
+            <version>${seam.version}</version>
+            <type>pom</type>
+            <scope>import</scope>
+         </dependency>
+
+         <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <version>${testng.version}</version>
+            <classifier>jdk15</classifier>
+            <exclusions>
+               <exclusion>
+                  <groupId>junit</groupId>
+                  <artifactId>junit</artifactId>
+               </exclusion>
+            </exclusions>
+         </dependency>
+
+         <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>${slf4j.version}</version>
+         </dependency>
+
+         <dependency>
+            <groupId>org.jboss.test-harness</groupId>
+            <artifactId>jboss-test-harness</artifactId>
+            <version>${jboss.test.harness.version}</version>
+         </dependency>
+         
+         <dependency>
+            <groupId>org.jboss.weld</groupId>
+            <artifactId>weld-core-test</artifactId>
+            <version>${weld.version}</version>
+         </dependency>
+
+      </dependencies>
+   </dependencyManagement>
+
+</project>

Deleted: build/trunk/pom.xml
===================================================================
--- build/trunk/pom.xml	2009-12-16 16:43:08 UTC (rev 11834)
+++ build/trunk/pom.xml	2009-12-16 18:54:58 UTC (rev 11835)
@@ -1,560 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-   <modelVersion>4.0.0</modelVersion>
-
-   <groupId>org.jboss.seam</groupId>
-   <artifactId>seam-version-matrix</artifactId>
-   <packaging>pom</packaging>
-   <version>3.0.0-SNAPSHOT</version>
-   <name>Seam Version Matrix</name>
-
-   <description>
-      A dependency and plugin version matrix for Seam modules, Seam examples, and Seam-based projects.
-   </description>
-
-   <url>http://www.seamframework.org</url>
-
-   <repositories>
-      <repository>
-         <id>repository.jboss.org</id>
-         <name>JBoss Repository</name>
-         <url>http://repository.jboss.org/maven2</url>
-         <releases>
-            <enabled>true</enabled>
-         </releases>
-         <snapshots>
-            <enabled>false</enabled>
-         </snapshots>
-      </repository>
-      <repository>
-         <id>snapshots.jboss.org</id>
-         <name>JBoss Snapshots Repository</name>
-         <url>http://snapshots.jboss.org/maven2</url>
-         <releases>
-            <enabled>false</enabled>
-         </releases>
-         <snapshots>
-            <enabled>true</enabled>
-            <updatePolicy>never</updatePolicy>
-         </snapshots>
-      </repository>
-   </repositories>
-
-   <pluginRepositories>
-      <pluginRepository>
-         <id>repository.jboss.org</id>
-         <name>JBoss Repository</name>
-         <url>http://repository.jboss.org/maven2</url>
-      </pluginRepository>
-   </pluginRepositories>
-   
-   <properties>
-      <seam.version>3.0.0-SNAPSHOT</seam.version>
-      <seam.groupId>org.jboss.seam</seam.groupId>
-      <weld.version>1.0.0</weld.version>
-      <weld-ext.version>1.0.0-SNAPSHOT</weld-ext.version>
-      <weld.groupId>org.jboss.weld</weld.groupId>
-   </properties>
-   
-   <dependencyManagement>
-      <dependencies>
-
-         <dependency>
-            <groupId>org.testng</groupId>
-            <artifactId>testng</artifactId>
-            <version>5.8</version>
-            <classifier>jdk15</classifier>
-            <exclusions>
-               <exclusion>
-                  <groupId>junit</groupId>
-                  <artifactId>junit</artifactId>
-               </exclusion>
-            </exclusions>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.ejb</groupId>
-            <artifactId>ejb-api</artifactId>
-            <version>3.0</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.annotation</groupId>
-            <artifactId>jsr250-api</artifactId>
-            <version>1.0</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>javax.persistence</groupId>
-            <artifactId>persistence-api</artifactId>
-            <version>1.0</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javassist</groupId>
-            <artifactId>javassist</artifactId>
-            <version>3.8.1.GA</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.transaction</groupId>
-            <artifactId>jta</artifactId>
-            <version>1.1</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.jms</groupId>
-            <artifactId>jms</artifactId>
-            <version>1.1</version>
-         </dependency>
-
-         <dependency>
-            <groupId>dom4j</groupId>
-            <artifactId>dom4j</artifactId>
-            <version>1.6.1</version>
-         </dependency>
-
-         <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-            <version>1.5.9.RC1</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.el</groupId>
-            <artifactId>el-api</artifactId>
-            <version>1.2</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>javax.faces</groupId>
-            <artifactId>jsf-api</artifactId>
-            <version>2.0.0-PR2_3</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.faces</groupId>
-            <artifactId>jsf-impl</artifactId>
-            <version>2.0.0-PR2_3</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>org.jboss.el</groupId>
-            <artifactId>jboss-el</artifactId>
-            <version>1.0_02.CR4</version>
-            <!--
-            <version>2.0.1.GA</version>
-            -->
-            <exclusions>
-               <exclusion>
-                  <groupId>javax.el</groupId>
-                  <artifactId>el-api</artifactId>
-               </exclusion>
-            </exclusions>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.el</groupId>
-            <artifactId>el-ri</artifactId>
-            <version>1.2</version>
-         </dependency>
-
-         <dependency>
-            <groupId>javax.validation</groupId>
-            <artifactId>validation-api</artifactId>
-            <version>1.0.CR2</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>org.hibernate</groupId>
-            <artifactId>hibernate</artifactId>
-            <version>3.2.4.sp1</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>javax.enterprise</groupId>
-            <artifactId>cdi-api</artifactId>
-            <version>1.0</version>                           
-         </dependency>
-
-         <dependency>
-            <groupId>${weld.groupId}</groupId>
-            <artifactId>weld-core</artifactId>
-            <version>${weld.version}</version>
-         </dependency>
-
-         <dependency>
-            <groupId>${weld.groupId}</groupId>
-            <artifactId>weld-core-test</artifactId>
-            <version>${weld.version}</version>
-         </dependency>
-
-         <dependency>
-            <groupId>${weld.groupId}</groupId>
-            <artifactId>weld-logger</artifactId>
-            <version>${weld-ext.version}</version>         
-         </dependency>
-         
-         <dependency>
-            <groupId>${weld.groupId}.servlet</groupId>
-            <artifactId>weld-servlet</artifactId>
-            <version>${weld.version}</version>         
-         </dependency>
-         
-         <dependency>
-            <groupId>org.drools</groupId>
-            <artifactId>drools-core</artifactId>
-            <version>4.0.4</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>org.drools</groupId>
-            <artifactId>drools-compiler</artifactId>
-            <version>4.0.4</version>
-         </dependency>
-
-         <!-- we don't have a generic javax.ejb 3.1 api yet -->
-         <dependency>
-            <groupId>org.jboss.ejb3</groupId>
-            <artifactId>jboss-ejb3-api</artifactId>
-            <version>3.1.0-Alpha1</version>
-            <exclusions>
-               <exclusion>
-                  <artifactId>jboss-jaxrpc</artifactId>
-                  <groupId>jbossws</groupId>
-               </exclusion>
-               <exclusion>
-                  <artifactId>jboss-transaction-api</artifactId>
-                  <groupId>org.jboss.javaee</groupId>
-               </exclusion>
-               <exclusion>
-                  <artifactId>jboss-jaxrpc</artifactId>
-                  <groupId>jboss.jbossws</groupId>
-               </exclusion>
-            </exclusions>
-         </dependency>
-
-         <dependency>
-            <groupId>org.jboss.test-harness</groupId>
-            <artifactId>jboss-test-harness</artifactId>
-            <version>1.1.0-CR3</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>org.jbpm</groupId>
-            <artifactId>jbpm-jpdl</artifactId>
-            <version>3.2.2</version>
-         </dependency> 
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-beans</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-         
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-bpm</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-bridge-api</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-drools</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-el</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-faces</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-         
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-international</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-mock</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-         
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-persistence</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-         
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-security</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>#{seam.groupId}</groupId>
-            <artifactId>seam-remoting</artifactId>
-            <version>${seam.version}</version>
-         </dependency>
-         
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-resources</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-         
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-view</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-web</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-
-         <dependency>
-            <groupId>${seam.groupId}</groupId>
-            <artifactId>seam-weld-bridge</artifactId>
-            <version>${seam.version}</version>                     
-         </dependency>
-         
-      </dependencies>
-   </dependencyManagement>
-
-   <build>
-      <extensions>
-         <extension>
-            <groupId>org.apache.maven.wagon</groupId>
-            <artifactId>wagon-webdav</artifactId>
-            <version>1.0-beta-2</version>
-         </extension>
-      </extensions>
-
-      <pluginManagement>
-         <plugins>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-antrun-plugin</artifactId>
-               <version>1.1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-compiler-plugin</artifactId>
-               <version>2.0.2</version>
-               <configuration>
-                 <source>1.5</source>
-                 <target>1.5</target>
-               </configuration>
-            </plugin>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-release-plugin</artifactId>
-              <version>2.0-beta-8</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-jar-plugin</artifactId>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-surefire-report-plugin</artifactId>
-               <version>2.4.3</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-surefire-plugin</artifactId>
-               <version>2.4.3</version>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>jboss-maven-plugin</artifactId>
-               <version>1.3.1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>properties-maven-plugin</artifactId>
-               <version>1.0-alpha-1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-clean-plugin</artifactId>
-               <version>2.2</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-deploy-plugin</artifactId>
-               <version>2.4</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-install-plugin</artifactId>
-               <version>2.2</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-site-plugin</artifactId>
-               <version>2.0-beta-6</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-source-plugin</artifactId>
-               <version>2.0.4</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-resources-plugin</artifactId>
-               <version>2.2</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-jar-plugin</artifactId>
-               <version>2.2</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-dependency-plugin</artifactId>
-               <version>2.0</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-war-plugin</artifactId>
-               <version>2.1-beta-1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-ejb-plugin</artifactId>
-               <version>2.1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-ear-plugin</artifactId>
-               <version>2.3.2</version>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>exec-maven-plugin</artifactId>
-               <version>1.1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>cobertura-maven-plugin</artifactId>
-               <version>2.2</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-javadoc-plugin</artifactId>
-               <version>2.4</version>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>emma-maven-plugin</artifactId>
-               <version>1.0-alpha-1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>tomcat-maven-plugin</artifactId>
-               <version>1.0-beta-1</version>
-            </plugin>
-            <plugin>
-               <groupId>org.mortbay.jetty</groupId>
-               <artifactId>maven-jetty-plugin</artifactId>
-               <version>6.1.16</version>
-            </plugin>
-            <plugin>
-               <groupId>org.twdata.maven</groupId>
-               <artifactId>maven-cli-plugin</artifactId>
-               <version>0.6.3.CR3</version>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-enforcer-plugin</artifactId>
-               <version>1.0-beta-1</version>
-               <executions>
-                  <execution>
-                     <id>enforce</id>
-                     <goals>
-                        <goal>enforce</goal>
-                     </goals>
-                     <configuration>
-                        <rules>
-                           <requireMavenVersion>
-                              <version>2.0.9</version>
-                           </requireMavenVersion>
-                           <requirePluginVersions>
-                              <unCheckedPlugins>
-                                 <unCheckedPlugin>org.apache.maven.plugins:maven-eclipse-plugin</unCheckedPlugin>
-                                 <unCheckedPlugin>org.twdata.maven:maven-cli-plugin</unCheckedPlugin>
-                              </unCheckedPlugins>
-                           </requirePluginVersions>
-                        </rules>
-                     </configuration>
-                  </execution>
-               </executions>
-            </plugin>
-         </plugins>
-      </pluginManagement>
-   </build>
-
-   <profiles>
-      <profile>
-         <id>jdk5</id>
-         <activation>
-            <jdk>1.5</jdk> 
-         </activation>
-         <dependencies>
-            <dependency>
-               <groupId>javax.annotation</groupId>
-               <artifactId>jsr250-api</artifactId>
-               <scope>provided</scope>
-            </dependency>
-         </dependencies>
-      </profile>
-   </profiles>
-
-   <distributionManagement>
-      <repository>
-         <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
-         <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
-         <!-- todo : replace this with direct svn access once the svnkit providers are available -->
-         <id>repository.jboss.org</id>
-         <url>file://${maven.repository.root}</url>
-      </repository>
-      <snapshotRepository>
-         <id>snapshots.jboss.org</id>
-         <name>JBoss Snapshot Repository</name>
-         <url>dav:https://snapshots.jboss.org/maven2</url>
-      </snapshotRepository>
-   </distributionManagement>
-   
-   <scm>
-      <connection>scm:svn:http://anonsvn.jboss.org/repos/seam</connection>
-      <developerConnection>scm:svn:https://svn.jboss.org/repos/seam</developerConnection>
-      <url>http://fisheye.jboss.org/browse/Seam</url>
-   </scm>
-
-</project>



More information about the seam-commits mailing list