stevel      2003/01/12 15:54:37

  Modified:    java/xmls properties.xml
  Log:
  experimental gump debugging. This patch goes with a gump descriptor patch  to set 
the property axis.lib.dir to lib, not lib.dir; we then resolve that property to 
lib.dir, hence forcing it to an absolute path regardless of whether it was set on the 
command line, in the build file as normal, or by gump.
  
  Revision  Changes    Path
  1.36      +5 -2      xml-axis/java/xmls/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/xmls/properties.xml,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- properties.xml    12 Jan 2003 23:24:21 -0000      1.35
  +++ properties.xml    12 Jan 2003 23:54:37 -0000      1.36
  @@ -30,8 +30,11 @@
   <property name="docs.dir" location="${axis.home}/docs"/>
   <property name="samples.dir" location="${axis.home}/samples"/>
   <property name="test.dir" location="${axis.home}/test"/>
  -<property name="lib.dir" location="${axis.home}/lib"/>
  -<property name="axis.lib.dir" location="${lib.dir}"/>
  +
  +<!-- we resolve the lib dir twice, to ensure that any
  +  paths from Gump are absolute -->
  +<property name="axis.lib.dir" location="${axis.home}/lib"/>
  +<property name="lib.dir" location="${axis.lib.dir}"/>
   
   <!-- jar files -->
   <property name="wsdl4j.jar" location="${lib.dir}/wsdl4j.jar"/>
  
  
  


Reply via email to