You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by cu...@apache.org on 2001/10/10 18:36:12 UTC

cvs commit: jakarta-lucene/lib ant-1.3.jar jdom-b7.jar velocity-1.2-dev.jar xerces-1.3.0.jar

cutting     01/10/10 09:36:12

  Modified:    .        build.properties build.xml
  Removed:     .        build.bat build.sh cpappend.bat
               lib      ant-1.3.jar jdom-b7.jar velocity-1.2-dev.jar
                        xerces-1.3.0.jar
  Log:
  Removed broken build scripts and their libs.  Build requires separate ant installation.
  
  Revision  Changes    Path
  1.10      +2 -0      jakarta-lucene/build.properties
  
  Index: build.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-lucene/build.properties,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.properties	2001/10/02 17:48:34	1.9
  +++ build.properties	2001/10/10 16:36:11	1.10
  @@ -48,3 +48,5 @@
   javacc.zip.dir = ${javacc.home}/lib
   javacc.zip = ${javacc.zip.dir}/JavaCC.zip
   
  +# Home directory of jakarta-site2
  +jakarta.site2.home = ../jakarta-site2
  
  
  
  1.12      +10 -4     jakarta-lucene/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-lucene/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml	2001/10/02 18:31:22	1.11
  +++ build.xml	2001/10/10 16:36:11	1.12
  @@ -25,6 +25,12 @@
       <pathelement path="${java.class.path}" />
     </path>
   
  +  <path id="anakia.classpath">
  +    <fileset dir="${jakarta.site2.home}/lib">
  +      <include name="*.jar" />
  +    </fileset>
  +  </path>
  +
     <!-- ================================================================== -->
     <!-- Prepares the build directory                                       -->
     <!-- ================================================================== -->
  @@ -211,14 +217,14 @@
       <available 
         classname="org.apache.velocity.anakia.AnakiaTask" 
         property="AnakiaTask.present"
  -      classpathref="classpath"
  +      classpathref="anakia.classpath"
       />
     </target>
   
     <target depends="docs-prepare" name="prepare-error" unless="AnakiaTask.present">
       <echo>
         AnakiaTask is not present! Please check to make sure that 
  -      velocity.jar is in your classpath.
  +      you have jakarta.site2.home set correctly.
       </echo>
     </target>
   
  @@ -227,7 +233,7 @@
         name="anakia" 
         classname="org.apache.velocity.anakia.AnakiaTask"
         >
  -      <classpath refid="classpath"/>
  +      <classpath refid="anakia.classpath"/>
       </taskdef>
         
       <anakia 
  @@ -238,7 +244,7 @@
         excludes="**/stylesheets/** empty.xml"
         includes="**/*.xml"
         lastModifiedCheck="true"
  -      templatePath="../jakarta-site2/xdocs/stylesheets"
  +      templatePath="${jakarta.site2.home}/xdocs/stylesheets"
       >
       </anakia>