You are viewing a plain text version of this content. The canonical link for it is here.
Posted to tdk-dev@turbine.apache.org by jv...@apache.org on 2001/08/05 18:12:57 UTC

cvs commit: jakarta-turbine-tdk build.properties build.xml

jvanzyl     01/08/05 09:12:57

  Modified:    .        build.properties build.xml
  Log:
  - modifying the build to start using ${lib.repo}
  
  Revision  Changes    Path
  1.3       +4 -0      jakarta-turbine-tdk/build.properties
  
  Index: build.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-tdk/build.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.properties	2001/08/02 05:35:09	1.2
  +++ build.properties	2001/08/05 16:12:57	1.3
  @@ -27,3 +27,7 @@
   
   #sample.dir = sample
   sample.dir = sample30
  +
  +village.jar = ${lib.repo}/village-1.5.1.jar
  +jdbc.jar = ${lib.repo}/jdbc2_0-stdext.jar
  +xmlrpc.jar = ${lib.repo}/xmlrpc.jar
  
  
  
  1.2       +4 -20     jakarta-turbine-tdk/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-tdk/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	2001/08/01 16:24:54	1.1
  +++ build.xml	2001/08/05 16:12:57	1.2
  @@ -2,11 +2,9 @@
   <!-- Build file for creating the TDK -->
   
   <project name="TDK" default="test-dist" basedir=".">
  -  <!-- 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" />
  +  <property file="build.properties" />
   
     <property name="tdk.dist.lib" value="${tdk.dist}/share/lib"/>
     <property name="tdk.webapp" value="${tdk.dist}/webapps/tdk"/>
  @@ -168,29 +166,15 @@
       <!-- T U R B I N E  L I B R A R Y  J A R  F I L E S                      -->
       <!-- =================================================================== -->
   
  -    <!--
  -      We are not copying over the xerces jar because it is
  -      in the global classpath. Xerces is used above to
  -      prevent a sealing violoation that's happending when
  -      crimson and parser jars are present in the global
  -      classpath and xerces is present in the webapp
  -      classpath. This fixes a sealing violation with
  -      the XML-RPC service and will hopefully fix
  -      the Jetspeed problem aswell.
  -    -->
  -
       <copy todir="${tdk.dist.lib}">
         <fileset dir="${turbine.lib}">
  -        <exclude name="castor*.jar"/>
           <exclude name="servlet*.jar"/>
         </fileset>
       </copy>
   
  -    <copy todir="${tdk.dist.lib}">
  -      <fileset dir="${torque.bin}">
  -        <include name="*.jar"/>
  -      </fileset>
  -    </copy>
  +    <copy file="${village.jar}" todir="${tdk.dist.lib}"/>
  +    <copy file="${jdbc.jar}" todir="${tdk.dist.lib}"/>
  +    <copy file="${xmlrpc.jar}" todir="${tdk.dist.lib}"/>
   
       <!-- =================================================================== -->
       <!-- T D K  J A R  F I L E S                                             -->
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-tdk-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-tdk-dev-help@jakarta.apache.org