[seam-commits] Seam SVN: r12093 - modules/remoting/trunk.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Mar 4 01:00:53 EST 2010


Author: shane.bryzak at jboss.com
Date: 2010-03-04 01:00:52 -0500 (Thu, 04 Mar 2010)
New Revision: 12093

Added:
   modules/remoting/trunk/assembly.xml
   modules/remoting/trunk/pom.xml
Removed:
   modules/remoting/trunk/dist/
Log:
restructured build


Added: modules/remoting/trunk/assembly.xml
===================================================================
--- modules/remoting/trunk/assembly.xml	                        (rev 0)
+++ modules/remoting/trunk/assembly.xml	2010-03-04 06:00:52 UTC (rev 12093)
@@ -0,0 +1,41 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+   <id>bin</id>
+   <formats>
+      <format>zip</format>
+   </formats>
+   <includeBaseDirectory>false</includeBaseDirectory>
+
+   <moduleSets>
+      <moduleSet>
+         <includes>
+            <include>org.jboss.seam.remoting:seam-remoting-core</include>
+         </includes>
+         <binaries>
+            <outputDirectory>seam-remoting/lib</outputDirectory>
+            <unpack>false</unpack>
+         </binaries>
+      </moduleSet>
+
+      <moduleSet>
+        <includes>
+          <include>org.jboss.seam.remoting:seam-remoting-reference-guide</include>
+        </includes>
+        <binaries>
+          <outputDirectory>seam-remoting/doc/reference</outputDirectory>
+          <unpack>true</unpack>
+        </binaries>
+      </moduleSet>
+
+      <moduleSet>
+        <includes>
+          <include>org.jboss.seam.remoting:seam-remoting-helloworld-example</include>
+        </includes>
+        <sources>
+          <outputDirectory>seam-remoting/examples/helloworld</outputDirectory>
+          <includeModuleDirectory>false</includeModuleDirectory>
+        </sources>
+     </moduleSet>
+   </moduleSets>
+</assembly>

Added: modules/remoting/trunk/pom.xml
===================================================================
--- modules/remoting/trunk/pom.xml	                        (rev 0)
+++ modules/remoting/trunk/pom.xml	2010-03-04 06:00:52 UTC (rev 12093)
@@ -0,0 +1,109 @@
+<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/xsd/maven-4.0.0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <artifactId>weld-parent</artifactId>
+      <groupId>org.jboss.weld</groupId>
+      <version>8</version>
+   </parent>
+
+   <groupId>org.jboss.seam.remoting</groupId>
+   <artifactId>seam-remoting-parent</artifactId>
+   <packaging>pom</packaging>
+   <version>3.0.0-SNAPSHOT</version>
+   <name>Seam Remoting Parent</name>
+
+   <modules>
+      <module>core</module>
+      <module>docs</module>
+      <module>examples/helloworld</module>
+      <module>examples/model</module>
+      <module>dist</module>
+   </modules>
+   
+   <build>
+      <plugins>
+         <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-5</version>
+            <configuration>
+               <descriptors>
+                  <descriptor>assembly.xml</descriptor>
+               </descriptors>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>   
+
+   <dependencyManagement>
+      <dependencies>
+         <dependency>
+            <groupId>javax.el</groupId>
+            <artifactId>el-api</artifactId>
+            <version>2.2</version>
+            <scope>provided</scope>
+         </dependency>
+         <dependency>
+            <groupId>javax.validation</groupId>
+            <artifactId>validation-api</artifactId>
+            <version>1.0.0.GA</version>
+         </dependency>
+         <dependency>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-core</artifactId>
+            <version>3.3.2.GA</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.enterprise</groupId>
+            <artifactId>cdi-api</artifactId>
+            <version>1.0-SP1</version>
+         </dependency>
+         <dependency>
+            <groupId>dom4j</groupId>
+            <artifactId>dom4j</artifactId>
+            <version>1.6.1</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+         </dependency>
+         <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>1.5.10</version>
+         </dependency>
+         <dependency>
+            <groupId>javax.jms</groupId>
+            <artifactId>jms</artifactId>
+            <version>1.1</version>
+         </dependency>
+      </dependencies>
+   </dependencyManagement>
+
+   <!-- Snapshots repo to get parent -->
+   <repositories>
+      <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>
+
+   <scm>
+      <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/remoting/trunk</connection>
+      <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/remoting/trunk</developerConnection>
+      <url>http://fisheye.jboss.org/browse/Seam/modules/remoting/trunk</url>
+   </scm>
+
+</project>



More information about the seam-commits mailing list