You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sa...@apache.org on 2011/05/04 12:22:28 UTC

svn commit: r1099397 - in /axis/axis2/java/core/branches/1_6/modules/samples: jaxws-version/pom.xml quickstart/build.xml quickstartaxiom/build.xml

Author: sagara
Date: Wed May  4 10:22:28 2011
New Revision: 1099397

URL: http://svn.apache.org/viewvc?rev=1099397&view=rev
Log:
Apply r1099385 ,r1099389 changes to the 1.6 branch.

Modified:
    axis/axis2/java/core/branches/1_6/modules/samples/jaxws-version/pom.xml
    axis/axis2/java/core/branches/1_6/modules/samples/quickstart/build.xml
    axis/axis2/java/core/branches/1_6/modules/samples/quickstartaxiom/build.xml

Modified: axis/axis2/java/core/branches/1_6/modules/samples/jaxws-version/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/jaxws-version/pom.xml?rev=1099397&r1=1099396&r2=1099397&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_6/modules/samples/jaxws-version/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/jaxws-version/pom.xml Wed May  4 10:22:28 2011
@@ -19,15 +19,12 @@
 
 <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>
-    <parent>
-        <groupId>org.apache.axis2</groupId>
-        <artifactId>axis2-parent</artifactId>
-        <version>1.6.1-SNAPSHOT</version>
-        <relativePath>../../parent/pom.xml</relativePath>
-    </parent>
-    <artifactId>version</artifactId>
-    <name>Apache Axis2 - JAXWS Version Service</name>
+    <modelVersion>4.0.0</modelVersion>   
+    <groupId>org.apache.axis2.examples</groupId>      
+    <artifactId>jaxws-version</artifactId>
+    <version>1.6.1-SNAPSHOT</version>
+    <packaging>jar</packaging>
+    <name>Apache Axis2 -JAXWS Version Service</name>
     <build>
         <sourceDirectory>src</sourceDirectory>
         <resources>

Modified: axis/axis2/java/core/branches/1_6/modules/samples/quickstart/build.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/quickstart/build.xml?rev=1099397&r1=1099396&r2=1099397&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_6/modules/samples/quickstart/build.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/quickstart/build.xml Wed May  4 10:22:28 2011
@@ -68,6 +68,10 @@
         <jar destfile="${build.dir}/StockQuoteService.aar">
             <fileset excludes="**/Test.class" dir="${build.dir}/classes"/>
         </jar>
+        <copy file="${build.dir}/StockQuoteService.aar"
+              toDir="${basedir}/../../repository/services"
+              overwrite="yes">  
+        </copy> 
     </target>
 
     <target name="clean">

Modified: axis/axis2/java/core/branches/1_6/modules/samples/quickstartaxiom/build.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/quickstartaxiom/build.xml?rev=1099397&r1=1099396&r2=1099397&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_6/modules/samples/quickstartaxiom/build.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/quickstartaxiom/build.xml Wed May  4 10:22:28 2011
@@ -60,6 +60,10 @@
         <jar destfile="${build.dir}/StockQuoteService.aar">
             <fileset excludes="**/Test.class" dir="${build.dir}/classes"/>
         </jar>
+        <copy file="${build.dir}/StockQuoteService.aar"
+              toDir="${basedir}/../../repository/services"
+              overwrite="yes">  
+        </copy> 
     </target>
 
     <target name="run.client" depends="compile">