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 rs...@apache.org on 2002/08/04 05:05:41 UTC

cvs commit: xml-axis/java/xmls properties.xml

rsitze      2002/08/03 20:05:41

  Modified:    java     build.xml buildPreTestTaskdefs.xml buildTest.xml
                        buildSamples.xml
               java/xmls properties.xml
  Log:
  Move build.properties override to common properties.xml file.
  
  Revision  Changes    Path
  1.166     +0 -5      xml-axis/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/build.xml,v
  retrieving revision 1.165
  retrieving revision 1.166
  diff -u -r1.165 -r1.166
  --- build.xml	2 Aug 2002 20:49:14 -0000	1.165
  +++ build.xml	4 Aug 2002 03:05:41 -0000	1.166
  @@ -69,11 +69,6 @@
     &taskdefs;
     &targets;
   
  -  <!-- Give user a chance to override without editing this file
  -       (and without typing -D each time it compiles it) -->
  -  <property file="build.properties"/>
  -  <property file="${user.home}/build.properties"/>
  -
     <!-- =================================================================== -->
     <!-- Compiles the source directory                                       -->
     <!-- =================================================================== -->
  
  
  
  1.3       +0 -4      xml-axis/java/buildPreTestTaskdefs.xml
  
  Index: buildPreTestTaskdefs.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/buildPreTestTaskdefs.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- buildPreTestTaskdefs.xml	31 Jul 2002 18:17:14 -0000	1.2
  +++ buildPreTestTaskdefs.xml	4 Aug 2002 03:05:41 -0000	1.3
  @@ -14,10 +14,6 @@
           &paths;
           &taskdefs;
   
  -  <!-- Give user a chance to override without editing this file
  -       (and without typing -D each time it compiles it) -->
  -  <property file="${user.home}/build.properties"/>
  -
     <property name="ant.dir" value="${env.ANT_HOME}/lib" />
   
     <target name="compile">
  
  
  
  1.11      +1 -1      xml-axis/java/buildTest.xml
  
  Index: buildTest.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/buildTest.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- buildTest.xml	1 Aug 2002 18:23:21 -0000	1.10
  +++ buildTest.xml	4 Aug 2002 03:05:41 -0000	1.11
  @@ -54,7 +54,7 @@
   
     <!-- Give user a chance to override without editing this file
          (and without typing -D each time it compiles it) -->
  -  <property file="${user.home}/build.properties"/>
  +  <property file="test.properties"/>
     <property file="${user.home}/test.properties"/>
   
   <!-- =========================================================================== -->
  
  
  
  1.6       +0 -4      xml-axis/java/buildSamples.xml
  
  Index: buildSamples.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/buildSamples.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- buildSamples.xml	1 Aug 2002 16:03:03 -0000	1.5
  +++ buildSamples.xml	4 Aug 2002 03:05:41 -0000	1.6
  @@ -51,10 +51,6 @@
           &taskdefs_post_compile;
   	&targets;
   
  -  <!-- Give user a chance to override without editing this file
  -       (and without typing -D each time it compiles it) -->
  -  <property file="${user.home}/build.properties"/>
  -
     <target name="bidbuy" depends="setenv">
       <ant inheritAll="true" antfile="samples/bidbuy/buildComponent.xml"/>
     </target>
  
  
  
  1.12      +4 -0      xml-axis/java/xmls/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/xmls/properties.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- properties.xml	30 Jul 2002 16:26:45 -0000	1.11
  +++ properties.xml	4 Aug 2002 03:05:41 -0000	1.12
  @@ -83,3 +83,7 @@
   <property name="http.proxyUser" value=""/>
   <property name="http.proxyPassword" value=""/>
   
  +<!-- Give user a chance to override without editing this file
  +     (and without typing -D each time it compiles it) -->
  +<property file="${axis.home}/build.properties"/>
  +<property file="${user.home}/build.properties"/>