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 Aleksander Slominski <as...@cs.indiana.edu> on 2004/05/05 02:20:06 UTC

Modified: sandesha build.xml

CVS notif forwarded as commit email message was rejected (shoudl work 
NOW ...)


  Modified:    sandesha build.xml
  Log:
  made ant test work:
  
  ./keys (dir.keys) directory seems to be missing - i have commented it out of interopTests and did some othe rminor edits to get ant test to work
  
  the same for dir.interop (*.jsk is suppsed to be there?!)
  
  build.work was not created so mkdired it but (un)deploy.wsdd seems to be missing and i am not sure where org/apache/ws/axis/oasis/Client_deploy.wsdd comes from ...
  
  after seein that AdminClient fails i took out interopTests out of tests target dependincy - it does not seem interopTests can be executed with what is currently in CVS (could not find  *.wsdd anywhere ...)
  
  added target interop that calls now interopTests
  
  Revision  Changes    Path
  1.2       +25 -16    ws-fx/sandesha/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	2 May 2004 17:43:08 -0000	1.1
  +++ build.xml	5 May 2004 00:00:19 -0000	1.2
  @@ -27,16 +27,16 @@
       </description>
   
       <target name="init">
  -        <property name='product.Name' value='Apache-Sandesha-J'/>
  -        <property name='product.name' value='sandesha'/>
  -        <property name='product.shortname' value='sandesha'/>
  -
  -        <property name='product.version.major' value='1'/>
  -        <property name='product.version.minor' value='0'/>
  -        <property name='product.version.level' value='Beta'/>
  -        <property name='product.Version' value='${product.version.major}.${product.version.minor}.${product.version.level}'/>
  -        <property name='product.version' value='${product.version.major}.${product.version.minor}.${product.version.level}'/>
  -        <property name='product_version' value='${product.version.major}_${product.version.minor}_${product.version.level}'/>
  +        <property name="product.Name" value="Apache-Sandesha-J"/>
  +        <property name="product.name" value="sandesha"/>
  +        <property name="product.shortname" value="sandesha"/>
  +
  +        <property name="product.version.major" value="1"/>
  +        <property name="product.version.minor" value="0"/>
  +        <property name="product.version.level" value="Beta2"/>
  +        <property name="product.Version" value="${product.version.major}.${product.version.minor}.${product.version.level}"/>
  +        <property name="product.version" value="${product.version.major}.${product.version.minor}.${product.version.level}"/>
  +        <property name="product_version" value="${product.version.major}_${product.version.minor}_${product.version.level}"/>
           <property name="year" value="2004"/>
           <property name="copyright" value="Copyright &#169; ${year} Apache Sandesha Project. All Rights Reserved."/>
   
  @@ -86,6 +86,7 @@
            java.class.path and leave the sandesha/lib empty. This requires that
            the CLASSPATH includes all required packages (see above
   
  +	ALEK: thos does nto seems to be true as start-functional-test-http-server depends on AXIS.jar (what version?)
            -->
           <path id="classpath.libraries" description="3rd party libs">
               <fileset dir="${dir.libs}">
  @@ -203,9 +204,9 @@
           <echo message="                                                                   "/>
           <echo message="   usage           --> provides help on using the build tool       "/>
           <echo message="                       (default)                                   "/>
  -        <echo message="                                                                   "/>
  +<!--        <echo message="                                                                   "/>
           <echo message="   changelog       --> generates changelog.html                    "/>
  -        <echo message="                                                                   "/>
  +        <echo message="                                                                   "/> -->
           <echo message=" See comments inside the build.xml file for more details.          "/>
           <echo message="-------------------------------------------------------------------"/>
           <echo message="                                                                   "/>
  @@ -301,8 +302,12 @@
               description="compile everything"/>
   
       <target name="test"
  -            depends="unitTests, systemTests"
  -            description="tests everything"/>        
  +            depends="unitTests"
  +            description="unti tests only"/>        
  +
  +    <target name="interop"
  +            depends="interopTests"
  +            description="interop tests"/>        
   
       <!-- #################################################################### -->
   
  @@ -372,7 +377,7 @@
               httpStopTarget="stop-functional-test-http-server"/>
       </target>
   
  -    <target name="start-functional-test-http-server" if="junit.present">
  +    <target name="start-functional-test-http-server" if="junit.present" depends="init">
           <echo message="Starting http server."/>
           <java classname="org.apache.axis.transport.http.SimpleAxisServer" fork="yes" dir="${build.dir}">
               <classpath refid="classpath.library"/>
  @@ -400,13 +405,17 @@
                   <include name="**/undeploy.wsdd"/>
               </fileset>
           </path>
  -
  +        
  +        <mkdir dir="${build.work}"/>
  +        
  +<!-- ALEK
           <copy todir="${build.dir}/keys">
               <fileset dir="${dir.keys}" includes="**"/>
           </copy>
           <copy todir="${build.dir}/interop">
               <fileset dir="${dir.interop}" includes="*.jks"/>
           </copy>
  +-->        
           
           <property name="deploy_xml_property" refid="deploy_xml_files"/>
           <property name="undeploy_xml_property" refid="undeploy_xml_files"/>
  
  
  



-- 
The best way to predict the future is to invent it - Alan Kay