You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@apache.org on 2002/12/02 01:16:07 UTC

cvs commit: jakarta-taglibs/xtags build.xml

glenn       2002/12/01 16:16:06

  Modified:    .        build.xml common.xml
               benchmark build.xml
               bsf      build.xml
               cache    build.xml
               dbtags   build.xml
               input    build.xml
               jmstags  build.xml
               jndi     build.xml
               log      build.xml
               random   build.xml
               regexp   build.xml
               scrape   build.xml
               src/taglib-template build.xml
               standard build.xml
               string   Tag: string-1-0 build.xml
               xsl      build.xml
               xtags    build.xml
  Log:
  Add support for build.properties files in the user home directory for build
  
  Revision  Changes    Path
  1.47      +3 -2      jakarta-taglibs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/build.xml,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- build.xml	3 Apr 2002 07:07:53 -0000	1.46
  +++ build.xml	2 Dec 2002 00:16:04 -0000	1.47
  @@ -10,6 +10,7 @@
     -->
   
     <property file="build.properties"/>
  +  <property file="${user.home}/build.properties"/>
   
     <!-- ********************** Destination Preparation ********************* -->
   
  @@ -173,7 +174,7 @@
     </target>
   
     <!-- *********************** Overall Build Command ********************** -->
  -  <target name="dist" depends="prepare,dist.documentation,bsf,input,utility,xsl,request,session,response,application,page,datetime,regexp,jndi,dbtags,scrape,mailer,i18n,io,xtags,log,ultradev4,random,benchmark,standard,string,jmstags,cache"/>
  +  <target name="dist" depends="prepare,dist.documentation,bsf,input,request,session,response,application,page,datetime,regexp,jndi,dbtags,scrape,mailer,i18n,io,xtags,log,ultradev4,random,benchmark,standard,string,jmstags,cache"/>
   
     <!-- *********************** Clean Command ****************************** -->
   
  
  
  
  1.30      +1 -0      jakarta-taglibs/common.xml
  
  Index: common.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/common.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- common.xml	1 Dec 2002 14:06:29 -0000	1.29
  +++ common.xml	2 Dec 2002 00:16:04 -0000	1.30
  @@ -8,6 +8,7 @@
     <!-- Properties setup                                                    -->
     <!-- =================================================================== -->
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property file="../common.properties"/>
     <property name="classpath" value="${servlet.jar}" />
   
  
  
  
  1.8       +0 -3      jakarta-taglibs/benchmark/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/benchmark/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	14 Jul 2001 16:45:14 -0000	1.7
  +++ build.xml	2 Dec 2002 00:16:04 -0000	1.8
  @@ -6,9 +6,6 @@
   
   <project name="benchmark" default="main">
   
  -  <property file="../build.properties"/>
  -  <!-- <property name="gen-docs.present" value="true"/> -->
  -
     &common;
   
   </project>
  
  
  
  1.11      +1 -0      jakarta-taglibs/bsf/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/bsf/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	1 Dec 2002 18:52:45 -0000	1.10
  +++ build.xml	2 Dec 2002 00:16:04 -0000	1.11
  @@ -7,6 +7,7 @@
   <project name="bsf" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${bsf.jar}"/>
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  
  1.4       +1 -0      jakarta-taglibs/cache/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/cache/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	3 Apr 2002 15:22:38 -0000	1.3
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.4
  @@ -8,6 +8,7 @@
   
     <!-- <property name="taglib.name" value="cache"/> -->
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet23.jar}:${standard.jar}"/>
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
     <property name="examples.pre" value="examples.pre"/>
  
  
  
  1.12      +1 -0      jakarta-taglibs/dbtags/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/dbtags/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml	14 Mar 2002 21:30:01 -0000	1.11
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.12
  @@ -8,6 +8,7 @@
   
     <!-- create this file to store the locations of your dependant jars -->
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${jdbc2_0-stdext.jar}"/>
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  
  1.10      +2 -0      jakarta-taglibs/input/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/input/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	25 Sep 2001 12:57:01 -0000	1.9
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.10
  @@ -22,6 +22,8 @@
     <!-- Load in your local build properties which define jar
          file locations.
     <property file="../build.properties"/> -->
  +  <property file="${user.home}/build.properties"/>
  +
     <!-- Define additional jar files to be used by ant when
          building your taglib.  The classpath value is a ":"
          separated list of jar file property names from your
  
  
  
  1.4       +1 -0      jakarta-taglibs/jmstags/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/jmstags/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	23 Feb 2002 19:30:08 -0000	1.3
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.4
  @@ -7,6 +7,7 @@
   <project name="jmstags" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet23.jar}:${commons-messenger.jar}:${jms.jar}" />
     <property name="messenger.xml" value="jmsimpl/Messenger.xml" />
     <property name="jms.lib.dir" value="jmsimpl/lib"/>
  
  
  
  1.8       +1 -0      jakarta-taglibs/jndi/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/jndi/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	8 Apr 2002 14:39:44 -0000	1.7
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.8
  @@ -12,6 +12,7 @@
   <project name="jndi" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="disable.examples.html" value="true"/>
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
   
  
  
  
  1.6       +1 -0      jakarta-taglibs/log/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/log/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	24 Jul 2001 15:29:49 -0000	1.5
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.6
  @@ -7,6 +7,7 @@
   <project name="log" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${log4j-core.jar}" />
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  
  1.7       +0 -3      jakarta-taglibs/random/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/random/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	13 Aug 2001 23:51:47 -0000	1.6
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.7
  @@ -11,9 +11,6 @@
   
   <project name="random" default="main">
   
  -  <property file="../build.properties"/>
  -  <property name="classpath" value="${servlet.jar}"/>
  -
     <!-- Include the common.xml ant build declarations -->
     &common;
   
  
  
  
  1.10      +1 -0      jakarta-taglibs/regexp/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/regexp/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	8 Jul 2001 14:23:49 -0000	1.9
  +++ build.xml	2 Dec 2002 00:16:05 -0000	1.10
  @@ -7,6 +7,7 @@
   <project name="regexp" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${jakarta-oro2.jar}"/>
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  
  1.10      +2 -1      jakarta-taglibs/scrape/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/scrape/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	9 Nov 2001 23:39:24 -0000	1.9
  +++ build.xml	2 Dec 2002 00:16:06 -0000	1.10
  @@ -12,6 +12,7 @@
   <project name="scrape" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${jakarta-oro2.jar}"/>
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  @@ -32,4 +33,4 @@
     <!-- Include the common.xml ant build declarations -->
     &common;
   
  -</project>
  \ No newline at end of file
  +</project>
  
  
  
  1.3       +3 -1      jakarta-taglibs/src/taglib-template/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/src/taglib-template/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	4 Jul 2001 22:14:22 -0000	1.2
  +++ build.xml	2 Dec 2002 00:16:06 -0000	1.3
  @@ -20,7 +20,9 @@
   
     <!-- Load in your local build properties which define jar
          file locations.
  -  <property file="../build.properties"/> -->
  +  <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/> -->
  +
     <!-- Define additional jar files to be used by ant when
          building your taglib.  The classpath value is a ":"
          separated list of jar file property names from your
  
  
  
  1.21      +1 -0      jakarta-taglibs/standard/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/build.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- build.xml	29 Aug 2002 02:04:49 -0000	1.20
  +++ build.xml	2 Dec 2002 00:16:06 -0000	1.21
  @@ -6,6 +6,7 @@
       <property name="isJaxp12" value="true" />
   
       <property file="../build.properties"/>
  +    <property file="${user.home}/build.properties"/>
       <property file="../common.properties"/>
       <property name="jaxen-full.jar"   value="lib/jaxen-full.jar"/>
       <property name="saxpath.jar"      value="lib/saxpath.jar"/>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.3.2.1   +1 -0      jakarta-taglibs/string/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/string/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- build.xml	31 Jul 2002 05:16:32 -0000	1.3
  +++ build.xml	2 Dec 2002 00:16:06 -0000	1.3.2.1
  @@ -12,6 +12,7 @@
   <project name="string" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${commons-lang.jar}"/>
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  
  1.13      +1 -0      jakarta-taglibs/xsl/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/xsl/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml	6 Apr 2002 15:32:26 -0000	1.12
  +++ build.xml	2 Dec 2002 00:16:06 -0000	1.13
  @@ -12,6 +12,7 @@
   <project name="xsl" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${xalan1.jar}:${xerces1.jar}"/>
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  
  1.11      +1 -0      jakarta-taglibs/xtags/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/xtags/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	9 Feb 2002 18:19:23 -0000	1.10
  +++ build.xml	2 Dec 2002 00:16:06 -0000	1.11
  @@ -7,6 +7,7 @@
   <project name="xtags" default="main">
   
     <property file="../build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     <property name="classpath" value="${servlet.jar}:${dom4j.jar}" />
   
     <property name="checkRequirements.pre" value="checkRequirements.pre"/>
  
  
  

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