You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by vl...@apache.org on 2002/11/24 04:26:22 UTC

cvs commit: xml-xindice build.xml contributor.xml

vladimir    2002/11/23 19:26:22

  Modified:    .        build.xml contributor.xml
  Log:
  update jar versions
  
  Revision  Changes    Path
  1.31      +28 -7     xml-xindice/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/build.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- build.xml	5 Nov 2002 06:14:30 -0000	1.30
  +++ build.xml	24 Nov 2002 03:26:22 -0000	1.31
  @@ -20,7 +20,7 @@
     -          Kimbro Staken (kstaken@xmldatabases.org)
     -          Fernando Padrilla (fern@apache.org)
     -          James Bates (james.bates@amplexor.com)
  -  -          Vladimir R. Bossicard (vladimir@bossicard.com)
  +  -          Vladimir R. Bossicard (vladimir@apache.org)
     -->
   
   <project name="xml-xindice" default="release" basedir=".">
  @@ -221,6 +221,12 @@
   
      <target name="war-release"
              depends="build">
  +      <copy file="${config.dir}/xindice.xml"
  +            toFile="${dist.dir}/xindice-${project.version}.xml">
  +         <filterset>
  +            <filter token="VERSION" value="${project.version}"/>
  +         </filterset>
  +      </copy>
         <war destfile="${dist.dir}/${project.filename}-${project.version}.war"
              update="false"
              webxml="config/web.xml">
  @@ -228,12 +234,21 @@
            <webinf dir="config">
               <include name="system.xml"/>
            </webinf>
  +          <!--
  +         <webinf dir=".">
  +            <include name="config/*.*"/>
  +         </webinf>
  +         <webinf dir="bin">
  +            <include name="xindicewar"/>
  +            <include name="xindicewar.bat"/>
  +         </webinf>
  +-->
            <lib dir="${jar.dir}">
               <include name="commons-logging-1.0.1.jar" />
  -            <include name="xmldb-api-20021026.jar"/>
  +            <include name="xmldb-api-20021118.jar"/>
  +            <include name="xmldb-api-sdk-20021118.jar"/>
               <include name="xmldb-xupdate.jar"/>
               <include name="infozone-tools.jar"/>
  -            <include name="xmldb-sdk.jar"/>
               <include name="xalan-2.4.0.jar"/>
               <include name="xercesImpl-2.1.0.jar"/>
               <include name="xmlrpc-1.1.jar"/>
  @@ -249,12 +264,14 @@
      </target>
   
      <target name="war-clean">
  -      <delete file="${dist.dir}/${project.filename}-${project.version}.war" />
  +       <delete file="${dist.dir}/${project.filename}-${project.version}.war" />
  +       <delete file="${dist.dir}/${project.filename}-${project.version}.xml" />
      </target>
   
      <target name="tomcat-deploy"
              depends="war-release"
              description="Deployes the Xindice webapp into the Tomcat installation">
  +      <copy file="${dist.dir}/${project.filename}-${project.version}.xml" todir="${tomcat.home}/webapps"/>
         <unjar src="${dist.dir}/${project.filename}-${project.version}.war"
                dest="${tomcat.home}/webapps/${webapp.name}"
                overwrite="true"/>
  @@ -263,6 +280,7 @@
      <target name="tomcat-clean"
              description="Removes the deployed Xindice webapp from the Tomcat installation">
         <delete dir="${tomcat.home}/webapps/${webapp.name}"/>
  +      <delete file="${tomcat.home}/webapps/${project.filename}-${project.version}.xml"/>
      </target>
   
      <!-- =================================================================== -->
  @@ -326,14 +344,15 @@
               <group title="Tools packages" packages="org.apache.xindice.tools*"/>
               <sourcepath>
                  <pathelement location="${src.dir}" />
  +               <pathelement location="${xmldb-api.src}" />
               </sourcepath>
               <classpath>
                  <pathelement location="${jar.dir}/ant-1.5.1.jar" />
                  <pathelement location="${jar.dir}/commons-logging-1.0.1.jar" />
  -               <pathelement location="${jar.dir}/xmldb-api-20021026.jar"/>
  +               <pathelement location="${jar.dir}/xmldb-api-20021118.jar"/>
  +               <pathelement location="${jar.dir}/xmldb-api-sdk-20021118.jar"/>
                  <pathelement location="${jar.dir}/xmldb-xupdate.jar"/>
                  <pathelement location="${jar.dir}/infozone-tools.jar"/>
  -               <pathelement location="${jar.dir}/xmldb-sdk.jar"/>
                  <pathelement location="${jar.dir}/xalan-2.4.0.jar"/>
                  <pathelement location="${jar.dir}/servlet.jar"/>
                  <pathelement location="${jar.dir}/xercesImpl-2.1.0.jar"/>
  @@ -346,5 +365,7 @@
      <target name="javadoc-clean">
         <delete dir="${api.dir}"/>
      </target>
  +
  +   <target name="gump-target" depends="release"/>
   
   </project>
  
  
  
  1.3       +1 -8      xml-xindice/contributor.xml
  
  Index: contributor.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/contributor.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- contributor.xml	24 Nov 2002 00:51:35 -0000	1.2
  +++ contributor.xml	24 Nov 2002 03:26:22 -0000	1.3
  @@ -44,13 +44,6 @@
       <property name="dist.dir" value="dist"/>
   
       <target name="publish">
  -        <copy file="${config.dir}/xindice.xml" 
  -              toFile="${dist.dir}/xindice-${project.version}.xml">
  -            <filterset>
  -                <filter token="VERSION" value="${project.version}"/>
  -            </filterset>
  -        </copy>
  -
           <!-- creates the jar zip release -->
           <zip destfile="${dist.dir}/xindice-jar-${project.version}.zip">
               <zipfileset dir="." includes="LICENSE,README" prefix=""/>