You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ru...@apache.org on 2006/10/25 13:29:33 UTC

svn commit: r467607 - in /webservices/axis2/branches/java/1_1: maven.xml modules/security/maven.xml modules/security/release-docs/NOTICE.txt modules/security/release-docs/README.txt

Author: ruchithf
Date: Wed Oct 25 04:29:33 2006
New Revision: 467607

URL: http://svn.apache.org/viewvc?view=rev&rev=467607
Log:
added the rampart bin-dist and src-dist goals

Modified:
    webservices/axis2/branches/java/1_1/maven.xml
    webservices/axis2/branches/java/1_1/modules/security/maven.xml
    webservices/axis2/branches/java/1_1/modules/security/release-docs/NOTICE.txt
    webservices/axis2/branches/java/1_1/modules/security/release-docs/README.txt

Modified: webservices/axis2/branches/java/1_1/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/maven.xml?view=diff&rev=467607&r1=467606&r2=467607
==============================================================================
--- webservices/axis2/branches/java/1_1/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/maven.xml Wed Oct 25 04:29:33 2006
@@ -1094,17 +1094,35 @@
     </goal>
 	
     <!-- ================================================================ -->
-    <!--- Create Apache Rampart Release Artifacts -->
+    <!--- Create Apache Rampart Release Artifacts                         -->
     <!-- ================================================================ -->
     <goal name="rampart-release">
+    	
         <ant:echo>+----------------------------------------------</ant:echo>
         <ant:echo>| Creating: Rampart Release</ant:echo>
         <ant:echo>+----------------------------------------------</ant:echo>
 
-        <ant:property name="destdir" value="target/rampart"/>
-        <ant:property name="moddir" value="target/rampart/modules"/>
-        <ant:property name="libdir" value="target/rampart/lib"/>
-        <ant:property name="samplesdir" value="target/rampart/samples"/>
+		<ant:mkdir dir="target/dist/rampart/" />
+
+        <attainGoal name="rampart-dist-bin"/>
+    	
+        <attainGoal name="rampart-dist-src"/>
+    	
+        <!--<attainGoal name="rampart-dist-doc"/> -->
+    </goal>
+	
+    <!-- ================================================================ -->
+    <!--- Rampart Binary Distro                                           -->
+    <!-- ================================================================ -->
+	<goal name="rampart-dist-bin">
+
+		<ant:echo>+----------------------------------------------</ant:echo>
+        <ant:echo>| Creating: Rampart Binary Distribution</ant:echo>
+        <ant:echo>+----------------------------------------------</ant:echo>
+
+        <ant:property name="moddir" value="target/temp-rampart-bin/rampart-${rampart_version}/modules"/>
+        <ant:property name="libdir" value="target/temp-rampart-bin/rampart-${rampart_version}/lib"/>
+        <ant:property name="samplesdir" value="target/temp-rampart-bin/rampart-${rampart_version}/samples"/>
         <ant:mkdir dir="${moddir}"/>
         <ant:mkdir dir="${libdir}"/>
         <ant:mkdir dir="${samplesdir}"/>
@@ -1142,9 +1160,76 @@
         <ant:copy toDir="${destdir}">
             <ant:fileset dir="modules/security/release-docs"/>
         </ant:copy>
-    	
-    </goal>
+		
+        <ant:zip file="target/dist/rampart/rampart-${rampart_version}.zip">
+            <ant:fileset dir="target/temp-rampart-bin/"/>
+        </ant:zip>
+        <ant:delete dir="target/temp-rampart-bin"/>
+	</goal>
+	
+    <!-- ================================================================ -->
+    <!--- Rampart Source Distro                                           -->
+    <!-- ================================================================ -->
+	<goal name="rampart-dist-src">
+        
+        <ant:echo>+----------------------------------------------</ant:echo>
+        <ant:echo>| Creating: Rampart Source Distribution</ant:echo>
+        <ant:echo>+----------------------------------------------</ant:echo>
 
+		<mkdir dir="target/temp-rampart-src"/>
+
+        <ant:mkdir dir="target/temp-rampart-src/rampart-src-${rampart_version}/rampart/src"/>
+        <ant:mkdir dir="target/temp-rampart-src/rampart-src-${rampart_version}/rahas/src"/>
+        <ant:mkdir dir="target/temp-rampart-src/rampart-src-${rampart_version}/secpolicy/src"/>
+
+        <ant:copy toDir="target/temp-rampart-src/rampart-src-${rampart_version}/rampart/">
+            <ant:fileset dir="modules/security">
+                <ant:include name="src/**"/>
+                <ant:exclude name="**/target/**"/>
+                <ant:exclude name="**/*class*/**"/>
+                <ant:exclude name="**/.svn/**"/>
+                <ant:exclude name="**/bin/**"/>
+                <ant:exclude name="**/*.log"/>
+                <ant:exclude name=".*"/>
+                <ant:exclude name="**/*.license"/>
+                <ant:exclude name="**/*.iml"/>
+            </ant:fileset>
+        	</ant:copy>
+        <ant:copy toDir="target/temp-rampart-src/rampart-src-${rampart_version}/rahas/">
+            <ant:fileset dir="modules/rahas">
+                <ant:include name="src/**"/>
+                <ant:exclude name="**/target/**"/>
+                <ant:exclude name="**/*class*/**"/>
+                <ant:exclude name="**/.svn/**"/>
+                <ant:exclude name="**/bin/**"/>
+                <ant:exclude name="**/*.log"/>
+                <ant:exclude name=".*"/>
+                <ant:exclude name="**/*.license"/>
+                <ant:exclude name="**/*.iml"/>
+            </ant:fileset>
+        	</ant:copy>
+        <ant:copy toDir="target/temp-rampart-src/rampart-src-${rampart_version}/secpolicy/">
+            <ant:fileset dir="modules/secpolicy">
+                <ant:include name="src/**"/>
+                <ant:exclude name="**/target/**"/>
+                <ant:exclude name="**/*class*/**"/>
+                <ant:exclude name="**/.svn/**"/>
+                <ant:exclude name="**/bin/**"/>
+                <ant:exclude name="**/*.log"/>
+                <ant:exclude name=".*"/>
+                <ant:exclude name="**/*.license"/>
+                <ant:exclude name="**/*.iml"/>
+            </ant:fileset>
+        </ant:copy>
+
+		<!-- TODO: Create and copy release documents :release-notes.html, README.txt, LICENCE.txt -->
+
+        <ant:zip file="target/dist/rampart/rampart-${rampart_version}-src.zip">
+            <ant:fileset dir="target/temp-rampart-src/"/>
+        </ant:zip>
+        <ant:delete dir="target/temp-rampart-src"/>
+    </goal>
+	
     <define:taglib uri="macros">
         <define:tag name="copy-deps">
             <!--

Modified: webservices/axis2/branches/java/1_1/modules/security/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/maven.xml?view=diff&rev=467607&r1=467606&r2=467607
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/security/maven.xml Wed Oct 25 04:29:33 2006
@@ -212,34 +212,4 @@
         </copy>
     </preGoal>
 	
-    <postGoal name="jar:jar">
-        <ant:echo>+----------------------------------------------</ant:echo>
-        <ant:echo>| Creating: Rampart Source Distribution</ant:echo>
-        <ant:echo>+----------------------------------------------</ant:echo>
-
-        <ant:mkdir dir="target/dist"/>
-        <ant:mkdir dir="target/temp/src"/>
-
-        <ant:copy toDir="target/temp/src">
-            <ant:fileset dir=".">
-                <ant:include name="src/**"/>
-                <ant:exclude name="**/target/**"/>
-                <ant:exclude name="**/*class*/**"/>
-                <ant:exclude name="**/.svn/**"/>
-                <ant:exclude name="**/bin/**"/>
-                <ant:exclude name="**/*.log"/>
-                <ant:exclude name=".*"/>
-                <ant:exclude name="**/*.license"/>
-                <ant:exclude name="**/*.iml"/>
-            </ant:fileset>
-        </ant:copy>
-
-		<!-- TODO: Create and copy release documents :release-notes.html, README.txt, LICENCE.txt -->
-
-        <ant:zip file="target/rampart-${rampart_version}-src.zip">
-            <ant:fileset dir="target/temp/src"/>
-        </ant:zip>
-        <ant:delete dir="target/temp"/>
-    </postGoal>
-
 </project>

Modified: webservices/axis2/branches/java/1_1/modules/security/release-docs/NOTICE.txt
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/release-docs/NOTICE.txt?view=diff&rev=467607&r1=467606&r2=467607
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/release-docs/NOTICE.txt (original)
+++ webservices/axis2/branches/java/1_1/modules/security/release-docs/NOTICE.txt Wed Oct 25 04:29:33 2006
@@ -9,3 +9,4 @@
 
    Please read the different LICENSE files present in the lib directory of
    this distribution.
+

Modified: webservices/axis2/branches/java/1_1/modules/security/release-docs/README.txt
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/release-docs/README.txt?view=diff&rev=467607&r1=467606&r2=467607
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/release-docs/README.txt (original)
+++ webservices/axis2/branches/java/1_1/modules/security/release-docs/README.txt Wed Oct 25 04:29:33 2006
@@ -1,5 +1,5 @@
 ======================================================
-Apache Rampart-1.1 build  (Month Day, 2006)
+Apache Rampart-1.1-RC1 build  (Month Day, 2006)
 
 http://ws.apache.org/axis2/modules/rampart/
 ------------------------------------------------------
@@ -39,3 +39,4 @@
 Thank you for using Apache Rampart!
 
 The Apache Rampart team. 
+



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org