[overlord-commits] Overlord SVN: r633 - in cdl/trunk/distribution: src/main/assembly and 1 other directories.

overlord-commits at lists.jboss.org overlord-commits at lists.jboss.org
Sat May 2 01:15:28 EDT 2009


Author: jeff.yuchang
Date: 2009-05-02 01:15:25 -0400 (Sat, 02 May 2009)
New Revision: 633

Added:
   cdl/trunk/distribution/src/main/assembly/docs.xml
   cdl/trunk/distribution/src/main/assembly/src.xml
Modified:
   cdl/trunk/distribution/pom.xml
   cdl/trunk/distribution/src/main/assembly/bin.xml
   cdl/trunk/distribution/src/main/release/ReleaseNotes.txt
Log:
* update the distro build.


Modified: cdl/trunk/distribution/pom.xml
===================================================================
--- cdl/trunk/distribution/pom.xml	2009-05-01 16:41:33 UTC (rev 632)
+++ cdl/trunk/distribution/pom.xml	2009-05-02 05:15:25 UTC (rev 633)
@@ -57,7 +57,6 @@
    </dependencies> 
 
     <build>
-	    <finalName>overlord-cdl-${project.version}</finalName>
         <resources>
             <resource>
                 <directory>src/main/java</directory>
@@ -67,25 +66,66 @@
             </resource>
         </resources>
         <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-assembly-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>distribution-package</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>single</goal>
-                        </goals>
-                        <configuration>
-                            <descriptors>
-                                <descriptor>src/main/assembly/bin.xml</descriptor>
-                            </descriptors>
-                            <tarLongFileMode>gnu</tarLongFileMode>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
+	       <plugin>
+		<artifactId>maven-assembly-plugin</artifactId>
+		<version>2.2-beta-2</version>
+		<executions>
+		  <execution>
+		    <id>docs</id>
+		    <phase>process-resources</phase>
+		    <goals>
+		      <goal>single</goal>
+		    </goals>
+		    <configuration>
+		      <finalName>overlord-cdl-${project.version}-docs</finalName>
+		      <appendAssemblyId>false</appendAssemblyId>
+		      <descriptors>
+		        <descriptor>src/main/assembly/docs.xml</descriptor>
+		      </descriptors>
+		    </configuration>
+		  </execution>
+		</executions>
+	      </plugin>
+	      <plugin>
+		<artifactId>maven-assembly-plugin</artifactId>
+		<version>2.2-beta-2</version>
+		<executions>
+		  <execution>
+		    <id>src</id>
+		    <phase>process-resources</phase>
+		    <goals>
+		      <goal>single</goal>
+		    </goals>
+		    <configuration>
+		      <finalName>overlord-cdl-${project.version}-src</finalName>
+		      <appendAssemblyId>false</appendAssemblyId>
+		      <descriptors>
+		        <descriptor>src/main/assembly/src.xml</descriptor>
+		      </descriptors>
+		    </configuration>
+		  </execution>
+		</executions>
+	      </plugin>
+	      <plugin>
+		<artifactId>maven-assembly-plugin</artifactId>
+		<version>2.2-beta-2</version>
+		<executions>
+		  <execution>
+		    <id>bin</id>
+		    <phase>process-resources</phase>
+		    <goals>
+		      <goal>single</goal>
+		    </goals>
+		    <configuration>
+		      <finalName>overlord-cdl-${project.version}</finalName>
+		      <appendAssemblyId>false</appendAssemblyId>
+		      <descriptors>
+		        <descriptor>src/main/assembly/bin.xml</descriptor>
+		      </descriptors>
+		    </configuration>
+		  </execution>
+		</executions>
+	      </plugin>
         </plugins>
     </build>
 

Modified: cdl/trunk/distribution/src/main/assembly/bin.xml
===================================================================
--- cdl/trunk/distribution/src/main/assembly/bin.xml	2009-05-01 16:41:33 UTC (rev 632)
+++ cdl/trunk/distribution/src/main/assembly/bin.xml	2009-05-02 05:15:25 UTC (rev 633)
@@ -20,7 +20,7 @@
 -->
 <assembly>
     <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
-    <id></id>
+    <id>bin</id>
     <includeBaseDirectory>true</includeBaseDirectory>
     <formats>
         <format>zip</format>

Added: cdl/trunk/distribution/src/main/assembly/docs.xml
===================================================================
--- cdl/trunk/distribution/src/main/assembly/docs.xml	                        (rev 0)
+++ cdl/trunk/distribution/src/main/assembly/docs.xml	2009-05-02 05:15:25 UTC (rev 633)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2008
+-->
+<assembly>
+    <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id>docs</id>
+    <includeBaseDirectory>true</includeBaseDirectory>
+    <formats>
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+        <fileSet>
+	   <directory>../docs/docbook/userguide/target/docbook/publish/en-US</directory>
+	   <outputDirectory>docs/userguide</outputDirectory>
+	</fileSet>
+
+	<fileSet>
+	   <directory>../docs/docbook/samplesguide/target/docbook/publish/en-US</directory>
+	   <outputDirectory>docs/samplesguide</outputDirectory>
+	</fileSet>
+
+	<fileSet>
+	   <directory>../docs/docbook/gettingstartedguide/target/docbook/publish/en-US</directory>
+	   <outputDirectory>docs/gettingstartedguide</outputDirectory>
+	</fileSet>
+
+        <fileSet>
+	   <directory>../runtime/jbossesb/target/javadoc</directory>
+	   <outputDirectory>docs/jbossesb-javadoc</outputDirectory>
+	</fileSet>
+        
+    </fileSets>
+
+</assembly>

Added: cdl/trunk/distribution/src/main/assembly/src.xml
===================================================================
--- cdl/trunk/distribution/src/main/assembly/src.xml	                        (rev 0)
+++ cdl/trunk/distribution/src/main/assembly/src.xml	2009-05-02 05:15:25 UTC (rev 633)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2008
+-->
+<assembly>
+    <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id>src</id>
+    <includeBaseDirectory>true</includeBaseDirectory>
+    <formats>
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+
+        <fileSet>
+            <directory>..</directory>
+            <outputDirectory>src</outputDirectory>
+            <excludes>
+               <exclude>**/.project</exclude>
+               <exclude>**/.classpath</exclude>
+               <exclude>**/.settings</exclude>
+               <exclude>**/.settings/**/*</exclude>
+               <exclude>**/target</exclude>
+	       <exclude>**/target/**/*</exclude>
+            </excludes>
+        </fileSet>
+    </fileSets>
+
+</assembly>

Modified: cdl/trunk/distribution/src/main/release/ReleaseNotes.txt
===================================================================
--- cdl/trunk/distribution/src/main/release/ReleaseNotes.txt	2009-05-01 16:41:33 UTC (rev 632)
+++ cdl/trunk/distribution/src/main/release/ReleaseNotes.txt	2009-05-02 05:15:25 UTC (rev 633)
@@ -1,18 +1,18 @@
-Overlord CDL 1.0-M2
-===================
-
-See the README.txt for more information about the Overlord CDL release.
-
-This is the second release of the CDL capabilities within the Overlord
-"SOA Governance" project. Additional information will be made available
-on the Overlord website (http://www.jboss.org/overlord/). Free free to post
-questions to the User forum, or raise issues against the SOAG component
-in Jira issue tracker.
-
-Please note: The "conversation aware ESB actions" mechanism should be
-considered an alpha version only, and subject to change in future
-releases. Its inclusion within this release is intended to enable the
-community to experiment with the approach and hopefully provide feedback
+Overlord CDL 1.0-M2
+===================
+
+See the README.txt for more information about the Overlord CDL release.
+
+This is the second release of the CDL capabilities within the Overlord
+"SOA Governance" project. Additional information will be made available
+on the Overlord website (http://www.jboss.org/overlord/). Free free to post
+questions to the User forum, or raise issues against the SOAG component
+in Jira issue tracker.
+
+Please note: The "conversation aware ESB actions" mechanism should be
+considered an alpha version only, and subject to change in future
+releases. Its inclusion within this release is intended to enable the
+community to experiment with the approach and hopefully provide feedback
 that can be used to guide the direction of this capability.
 
 This "conversation aware" mechanism in M1 required state information to be
@@ -30,11 +30,29 @@
 
 The same examples are available in both stateful and stateless approaches,
 to enable comparison between the jboss-esb.xml definitions for each service.
-Feedback on both approaches would be appreciated.
-
-Overlord-CDL Development Team
-
-------------------------------------------------------------------------
-
-The current list of outstanding problems or tasks can be obtained from
+Feedback on both approaches would be appreciated.
+
+Overlord CDL 1.0-M1
+===================
+
+See the README.txt for more information about the Overlord CDL release.
+
+This is the initial release of the CDL capabilities within the Overlord
+"SOA Governance" project. Additional information will be made available
+on the Overlord website (http://www.jboss.org/overlord/). Free free to post
+questions to the User forum, or raise issues against the SOAG component
+in Jira issue tracker.
+
+Please note: The "conversation aware ESB actions" mechanism should be
+considered an alpha version only, and subject to change in future
+releases. Its inclusion within this release is intended to enable the
+community to experiment with the approach and hopefully provide feedback
+that can be used to guide the direction of this capability.
+
+
+Overlord-CDL Development Team
+
+------------------------------------------------------------------------
+
+The current list of outstanding problems or tasks can be obtained from
 the Overlord JIRA system at: https://jira.jboss.org/jira/browse/SOAG




More information about the overlord-commits mailing list