You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by cr...@apache.org on 2002/01/05 02:39:17 UTC

cvs commit: jakarta-commons-sandbox/workflow build.properties.sample build.xml

craigmcc    02/01/04 17:39:17

  Modified:    modeler  build.properties.sample build.xml
               workflow build.properties.sample build.xml
  Log:
  Add META-INF/LICENSE.txt to "modeler" and "workflow", and reflect the fact
  that these packages now depend on commons-logging.jar (because Digester does)
  for their unit tests.
  
  Revision  Changes    Path
  1.3       +2 -0      jakarta-commons-sandbox/modeler/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/modeler/build.properties.sample,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.properties.sample	1 Oct 2001 17:39:51 -0000	1.2
  +++ build.properties.sample	5 Jan 2002 01:39:17 -0000	1.3
  @@ -11,11 +11,13 @@
   beanutils.home=${commons.home}/beanutils
   collections.home=${commons.home}/collections
   digester.home=${commons.home}/digester
  +logging.home=${commons.home}/logging
   
   # Jakarta JAR files
   commons-beanutils.jar=${beanutils.home}/dist/commons-beanutils.jar
   commons-collections.jar=${collections.home}/dist/commons-collections.jar
   commons-digester.jar=${digester.home}/dist/commons-digester.jar
  +commons-logging.jar=${logging.home}/dist/commons-logging.jar
   
   # External packages
   jaxp.jaxp.jar=${jaxp.home}/jaxp.jar
  
  
  
  1.3       +8 -1      jakarta-commons-sandbox/modeler/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/modeler/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	1 Oct 2001 17:39:51 -0000	1.2
  +++ build.xml	5 Jan 2002 01:39:17 -0000	1.3
  @@ -3,7 +3,7 @@
   
   <!--
           "Modeler" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.2 2001/10/01 17:39:51 craigmcc Exp $
  +        $Id: build.xml,v 1.3 2002/01/05 01:39:17 craigmcc Exp $
   -->
   
   
  @@ -27,6 +27,7 @@
     <property name="collections.home"        value="${commons.home}/collections"/>
     <property name="digester.home"           value="${commons.home}/digester"/>
     <property name="jmx.home"                value="/usr/local/jmx-ri_1.0.1/jmx"/>
  +  <property name="logging.home"            value="${commons.home}/logging"/>
   
   <!-- ========== Derived Values ============================================ -->
   
  @@ -41,6 +42,7 @@
     <property name="commons-beanutils.jar"   value="${beanutils.home}/dist/commons-beanutils.jar"/>
     <property name="commons-collections.jar" value="${collections.home}/dist/commons-collections.jar"/>
     <property name="commons-digester.jar"    value="${digester.home}/dist/commons-digester.jar"/>
  +  <property name="commons-logging.jar"     value="${logging.home}/dist/commons-logging.jar"/>
   
   
   <!-- ========== Component Declarations ==================================== -->
  @@ -92,6 +94,7 @@
       <pathelement location="${commons-beanutils.jar}"/>
       <pathelement location="${commons-collections.jar}"/>
       <pathelement location="${commons-digester.jar}"/>
  +    <pathelement location="${commons-logging.jar}"/>
       <pathelement location="${jmxri.jar}"/>
       <pathelement location="${jmxtools.jar}"/>
     </path>
  @@ -110,6 +113,7 @@
       <pathelement location="${commons-beanutils.jar}"/>
       <pathelement location="${commons-collections.jar}"/>
       <pathelement location="${commons-digester.jar}"/>
  +    <pathelement location="${commons-logging.jar}"/>
       <pathelement location="${jmxri.jar}"/>
       <pathelement location="${jmxtools.jar}"/>
       <pathelement location="${junit.jar}"/>
  @@ -201,6 +205,9 @@
       <mkdir      dir="${dist.home}"/>
       <copy      file="../LICENSE"
                 todir="${dist.home}"/>
  +    <mkdir      dir="${build.home}/classes/META-INF"/>
  +    <copy      file="../LICENSE"
  +             tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
       <jar    jarfile="${dist.home}/commons-${component.name}.jar"
               basedir="${build.home}/classes"
              manifest="${build.home}/conf/MANIFEST.MF"/>
  
  
  
  1.3       +2 -0      jakarta-commons-sandbox/workflow/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/workflow/build.properties.sample,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.properties.sample	22 Aug 2001 05:00:25 -0000	1.2
  +++ build.properties.sample	5 Jan 2002 01:39:17 -0000	1.3
  @@ -11,12 +11,14 @@
   collections.home=${commons.home}/collections
   digester.home=${commons.home}/digester
   jpath.home=${sandbox.home}/jpath
  +logging.home=${commons.home}/logging
   servletapi.home=../../jakarta-servletapi-4
   
   # Jakarta JAR files
   commons-beanutils.jar=${beanutils.home}/dist/commons-beanutils.jar
   commons-collections.jar=${collections.home}/dist/commons-collections.jar
   commons-digester.jar=${digester.home}/dist/commons-digester.jar
  +commons-logging.jar=${logging.home}/dist/commons-logging.jar
   servlet.jar=${servletapi.home}/lib/servlet.jar
   
   # External packages
  
  
  
  1.12      +9 -3      jakarta-commons-sandbox/workflow/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/workflow/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml	24 Dec 2001 19:45:57 -0000	1.11
  +++ build.xml	5 Jan 2002 01:39:17 -0000	1.12
  @@ -3,7 +3,7 @@
   
   <!--
           "Workflow" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.11 2001/12/24 19:45:57 craigmcc Exp $
  +        $Id: build.xml,v 1.12 2002/01/05 01:39:17 craigmcc Exp $
   -->
   
   
  @@ -29,6 +29,7 @@
     <property name="collections.home"        value="${commons.home}/collections"/>
     <property name="digester.home"           value="${commons.home}/digester"/>
     <property name="jxpath.home"             value="${commons.home}/jxpath"/>
  +  <property name="logging.home"            value="${commons.home}/logging"/>
     <property name="servletapi.home"         value="../../jakarta-servleatpi-4"/>
   
     <!-- Demo web application deployment properties -->
  @@ -47,7 +48,8 @@
     <property name="commons-beanutils.jar"   value="${beanutils.home}/dist/commons-beanutils.jar"/>
     <property name="commons-collections.jar" value="${collections.home}/dist/commons-collections.jar"/>
     <property name="commons-digester.jar"    value="${digester.home}/dist/commons-digester.jar"/>
  -  <property name="commons-jxpath.jar"       value="${jxpath.home}/dist/commons-jxpath.jar"/>
  +  <property name="commons-jxpath.jar"      value="${jxpath.home}/dist/commons-jxpath.jar"/>
  +  <property name="commons-logging.jar"     value="${logging.home}/dist/commons-logging.jar"/>
     <property name="servlet.jar"             value="${servletapi.home}/lib/servlet.jar"/>
   
   
  @@ -101,13 +103,13 @@
       <pathelement location="${commons-collections.jar}"/>
       <pathelement location="${commons-digester.jar}"/>
       <pathelement location="${commons-jxpath.jar}"/>
  +    <pathelement location="${commons-logging.jar}"/>
       <pathelement location="${servlet.jar}"/>
     </path>
   
   
   <!-- ========== Test Execution Defaults =================================== -->
   
  -
     <!-- Construct unit test classpath -->
     <path id="test.classpath">
       <pathelement location="${build.home}/classes"/>
  @@ -119,6 +121,7 @@
       <pathelement location="${commons-collections.jar}"/>
       <pathelement location="${commons-digester.jar}"/>
       <pathelement location="${commons-jxpath.jar}"/>
  +    <pathelement location="${commons-logging.jar}"/>
       <pathelement location="${servlet.jar}"/>
       <pathelement location="${junit.jar}"/>
     </path>
  @@ -233,6 +236,9 @@
       <mkdir      dir="${dist.home}"/>
       <copy      file="../LICENSE"
                 todir="${dist.home}"/>
  +    <mkdir      dir="${build.home}/classes/META-INF"/>
  +    <copy      file="../LICENSE"
  +             tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
       <jar    jarfile="${dist.home}/commons-${component.name}.jar"
               basedir="${build.home}/classes"
              manifest="${build.home}/conf/MANIFEST.MF"/>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>