jvanzyl     02/02/12 10:25:50

  Modified:    .        Tag: rundata_security_changes build.xml
                        default.properties
  Log:
  - removing more hard coding
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.20.2.9  +18 -17    jakarta-turbine-3/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/build.xml,v
  retrieving revision 1.20.2.8
  retrieving revision 1.20.2.9
  diff -u -r1.20.2.8 -r1.20.2.9
  --- build.xml 12 Feb 2002 18:18:32 -0000      1.20.2.8
  +++ build.xml 12 Feb 2002 18:25:50 -0000      1.20.2.9
  @@ -13,9 +13,11 @@
     <property file="build.properties" />
     <!-- Set default values for the build -->
     <property file="default.properties" />
  -  
  -  <!-- Create a classpath from the deps.list file using
  -       the ${lib.repo} as the base directory -->
  +
  +  <!-- We need this JAR for the tools, hopefully these tasks will
  +       be part of Ant, or we can specify that a special JAR be
  +       placed into $ANT_HOME/lib.
  +  -->
   
     <path id="tool-classpath">
       <pathelement location="tdk.jar"/>
  @@ -97,19 +99,18 @@
     <target 
       name="env"
       depends="init">
  -    
  +
  +    <property name="classpath" refid="classpath"/>
  +
       <echo>
         java.home = ${java.home}
         user.home = ${user.home}
         lib.repo = ${lib.repo}
         jar.resources = ${jar.resources}
  -    </echo>      
         
  -    <property name="classpath" refid="classpath"/>
  -
  -    <echo message="Classpath created from deps.list:"/>
  -    <echo message="${classpath}"/>
  -
  +      Classpath:
  +      ${classpath}
  +    </echo>      
     </target>
   
     <!-- ================================================================== -->
  @@ -377,13 +378,13 @@
         sourcepath="${build.src}"
         packagenames="${package}.*"
         destdir="${javadoc.destdir}"
  -      author="true"
  -      private="true"
  -      version="true"
  -      use="true"
  -      windowtitle="${windowtitle}"
  -      doctitle="${doctitle}"
  -      bottom="${bottom}">
  +      author="${author}"
  +      private="${javadoc.private}"
  +      version="${javadoc.version}"
  +      use="${javadoc.use}"
  +      windowtitle="${javadoc.windowtitle}"
  +      doctitle="${javadoc.doctitle}"
  +      bottom="${javadoc.bottom}">
         <classpath refid="classpath"/>
       </javadoc>
   
  
  
  
  1.12.2.5  +7 -3      jakarta-turbine-3/default.properties
  
  Index: default.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/default.properties,v
  retrieving revision 1.12.2.4
  retrieving revision 1.12.2.5
  diff -u -r1.12.2.4 -r1.12.2.5
  --- default.properties        12 Feb 2002 18:18:32 -0000      1.12.2.4
  +++ default.properties        12 Feb 2002 18:25:50 -0000      1.12.2.5
  @@ -44,9 +44,13 @@
   docs.src = ./xdocs
   docs.dest = ./docs
   
  -windowtitle = ${name} ${version} API
  -doctitle = ${name} ${version} API
  -bottom = Copyright &amp;copy; ${year} Apache Software Foundation. All Rights 
Reserved.
  +javadoc.windowtitle = ${name} ${version} API
  +javadoc.doctitle = ${name} ${version} API
  +javadoc.bottom = Copyright &amp;copy; ${year} Apache Software Foundation. All 
Rights Reserved.
  +javadoc.author = true
  +javadoc.private = true
  +javadoc.version = true
  +javadoc.use = true
   
   # -------------------------------------------------------------------
   # T E S T I N G
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to