You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by ja...@apache.org on 2005/06/10 14:39:58 UTC

cvs commit: ws-fx/sandesha/samples README.txt build.xml

jaliya      2005/06/10 05:39:58

  Modified:    sandesha maven.xml
               sandesha/samples README.txt build.xml
  Log:
  modifid the maven files
  
  Revision  Changes    Path
  1.9       +1 -1      ws-fx/sandesha/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/maven.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- maven.xml	10 Jun 2005 11:46:37 -0000	1.8
  +++ maven.xml	10 Jun 2005 12:39:58 -0000	1.9
  @@ -88,7 +88,7 @@
           <property name="bin.dist.dir" value="target/dist-bin/Sandesha-${pom.currentVersion}-bin"/>
           <ant:mkdir dir="${bin.dist.dir}"/>
           <ant:mkdir dir="${bin.dist.dir}/docs"/>
  -        <ant:mkdir dir="${bin.dist.dir}/bin"/>
  +        <ant:mkdir dir="${bin.dist.dir}/target"/>
           <ant:mkdir dir="${bin.dist.dir}/lib"/>
           <ant:mkdir dir="${bin.dist.dir}/samples"/>
           <ant:mkdir dir="${bin.dist.dir}/docs/api"/>
  
  
  
  1.4       +15 -1     ws-fx/sandesha/samples/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/samples/README.txt,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- README.txt	10 Jun 2005 11:38:08 -0000	1.3
  +++ README.txt	10 Jun 2005 12:39:58 -0000	1.4
  @@ -1 +1,15 @@
  -Sandesha Samples. Please 
  +Sandesha Samples.
  +
  +If you have downloaded the source distribution, then first build the source using maven.
  +
  +Following targets are availble for Samples.
  +
  +ping_sync       --> runs interop test for AsyncPing
  +ping_async      --> runs interop test for SyncPing
  +echo_sync_ack   --> runs interop test for EchoStirng
  +echo_async_ack  --> runs interop test for EchoStirng
  +clean           --> cleans up all generated files and
  +usage           --> provides help on using the build tool(default)
  +
  +For more information, about samples please 
  +
  
  
  
  1.2       +6 -7      ws-fx/sandesha/samples/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/samples/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	10 Jun 2005 11:38:08 -0000	1.1
  +++ build.xml	10 Jun 2005 12:39:58 -0000	1.2
  @@ -27,7 +27,6 @@
   
       <target name="usage">
           <echo message="                                                                            "/>
  -        <echo message=" Build instructions                                                         "/>
           <echo message="----------------------------------------------------------------------------"/>
           <echo message=" Available Targets Are                                                      "/>
           <echo message="   ping_sync       -->runs interop test for AsyncPing                       "/>
  @@ -42,8 +41,8 @@
   
   
       <target name="check.jar">
  -        <available property="sandesha.jar.found1" file="..\Sandesha-beta.jar"/>
  -        <available property="sandesha.jar.found2" file="..\target\Sandesha-beta.jar"/>
  +        <available property="sandesha.jar.found1" file="../Sandesha-beta.jar"/>
  +        <available property="sandesha.jar.found2" file="../target/Sandesha-beta.jar"/>
       </target>
   
       <target name="set.jar.at.root" depends="check.jar" unless="sandesha.jar.found1">
  @@ -57,9 +56,9 @@
   
   
       <target name="init" depends="set.jar.at.root">
  -        <property name="dir.libs" value="..\lib"/>
  -        <property name="dir.root" value="..\"/>
  -        <property name="dir.target" value="..\target"/>
  +        <property name="dir.libs" value="../lib"/>
  +        <property name="dir.root" value="../"/>
  +        <property name="dir.target" value="../target"/>
           <property name="jar.name" value="Sandesha-beta.jar"/>
   
           <path id="classpath.libraries" description="3rd party libs">
  @@ -69,7 +68,7 @@
               <fileset dir="${dir.root}">
                   <include name="${jar.name}"/>
               </fileset>
  -            <fileset dir="${dir.target}">
  +            <fileset dir="${dir.target}" >
                   <include name="${jar.name}"/>
               </fileset>
           </path>