You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2002/09/04 21:05:26 UTC

cvs commit: xml-axis/java/samples/stock build.xml

seibert     2002/09/04 12:05:26

  Modified:    java/samples/attachments build.xml
               java/samples/bidbuy build.xml
               java/samples/encoding build.xml
               java/samples/jaxrpc build.xml
               java/samples/message build.xml
               java/samples/misc build.xml
               java/samples/proxy build.xml
               java/samples/security build.xml
               java/samples/stock build.xml
  Log:
  NOW the samples/**/build.xml files all have the appropropriate component
  syntax (i.e. referencing all paths against axis.home)
  
  Revision  Changes    Path
  1.3       +1 -1      xml-axis/java/samples/attachments/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/attachments/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:16 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:25 -0000	1.3
  @@ -48,7 +48,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +1 -1      xml-axis/java/samples/bidbuy/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/bidbuy/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:16 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:25 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +1 -1      xml-axis/java/samples/encoding/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/encoding/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:16 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +4 -4      xml-axis/java/samples/jaxrpc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/jaxrpc/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:16 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -49,8 +49,8 @@
   
   <target name="compile">
       <!-- jaxrpc Dynamic proxy with bean - Bug 10824 -->
  -    <wsdl2java url="samples/jaxrpc/address/Address.wsdl"
  -               output="build/work"
  +    <wsdl2java url="${axis.home}/samples/jaxrpc/address/Address.wsdl"
  +               output="${axis.home}/build/work"
                  serverSide="yes"
                  testcase="no">
       </wsdl2java>
  @@ -63,14 +63,14 @@
       </javac>
   
       <!-- jaxrpc sample -->
  -    <wsdl2java url="samples/jaxrpc/hello/HelloWorld.wsdl"
  +    <wsdl2java url="${axis.home}/samples/jaxrpc/hello/HelloWorld.wsdl"
                  output="${build.dir}/work"
                  serverSide="yes"
                  testcase="no">
       </wsdl2java>
   
       <!-- jaxrpc sample -->
  -    <wsdl2java url="samples/jaxrpc/hello/HelloWorld.wsdl"
  +    <wsdl2java url="${axis.home}/samples/jaxrpc/hello/HelloWorld.wsdl"
                  output="${build.dir}/work"
                  serverSide="yes"
                  testcase="no">
  
  
  
  1.3       +1 -1      xml-axis/java/samples/message/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/message/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:16 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +1 -1      xml-axis/java/samples/misc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/misc/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:16 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +1 -1      xml-axis/java/samples/proxy/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/proxy/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:17 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +1 -1      xml-axis/java/samples/security/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/security/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:17 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  
  
  
  1.3       +4 -5      xml-axis/java/samples/stock/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/stock/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Sep 2002 16:18:17 -0000	1.2
  +++ build.xml	4 Sep 2002 19:05:26 -0000	1.3
  @@ -47,7 +47,7 @@
   <target name="copy"/>
   
   <target name="compile">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
  @@ -56,11 +56,10 @@
       <exclude name="**/old/**/*.java" />
     </javac>
     <!-- first, put the JWS where the functional test can see it -->
  -  <mkdir dir="build/jws" />
  -  <copy file="samples/stock/StockQuoteService.jws" todir="build/jws" />
  -
  +  <mkdir dir="${axis.home}/build/jws" />
  +  <copy file="${axis.home}/samples/stock/StockQuoteService.jws" todir="${axis.home}/build/jws" />
     <!--...not to mention the sample user list -->
  -  <copy file="samples/stock/users.lst" todir="build"/>
  +  <copy file="${axis.home}/samples/stock/users.lst" todir="${axis.home}/build"/>
   
   </target>