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:22 UTC

cvs commit: jakarta-taglibs-sandbox/src/taglib-template build.xml

glenn       2002/12/01 16:16:21

  Modified:    .        build.xml
               cache    build.xml
               iterators build.xml
               latka-taglib build.xml
               src/taglib-template build.xml
  Log:
  Add support for build.properties files in the user home directory for build
  
  Revision  Changes    Path
  1.2       +2 -1      jakarta-taglibs-sandbox/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs-sandbox/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	21 Jul 2002 19:42:36 -0000	1.1
  +++ build.xml	2 Dec 2002 00:16:21 -0000	1.2
  @@ -10,6 +10,7 @@
     -->
   
     <property file="build.properties"/>
  +  <property file="${user.home}/build.properties"/>
   
     <!-- ********************** Destination Preparation ********************* -->
   
  
  
  
  1.2       +2 -0      jakarta-taglibs-sandbox/cache/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs-sandbox/cache/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	1 Apr 2002 03:49:35 -0000	1.1
  +++ build.xml	2 Dec 2002 00:16:21 -0000	1.2
  @@ -18,6 +18,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.2       +1 -0      jakarta-taglibs-sandbox/iterators/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs-sandbox/iterators/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	29 Jun 2002 00:18:32 -0000	1.1
  +++ build.xml	2 Dec 2002 00:16:21 -0000	1.2
  @@ -11,6 +11,7 @@
   
     <property file="../build.properties"/>
     <property file="build.properties"/>
  +  <property file="${user.home}/build.properties"/>
     
     <property name="classpath" value="${servlet23.jar}:${jstl.jar}:${standard.jar}"/> 
     <property name="jsp12.present" value="true"/>
  
  
  
  1.8       +1 -0      jakarta-taglibs-sandbox/latka-taglib/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs-sandbox/latka-taglib/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	9 Oct 2001 18:56:04 -0000	1.7
  +++ build.xml	2 Dec 2002 00:16:21 -0000	1.8
  @@ -26,6 +26,7 @@
   
     <!-- create this file to store the locations of your dependant jars -->
     <property file="${taglibs.basedir}/build.properties"/>
  +  <property file="${user.home}/build.properties"/>
   
     <property name="classpath" value="${servlet.jar}:${latka.jar}"/>
   
  
  
  
  1.2       +3 -1      jakarta-taglibs-sandbox/src/taglib-template/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs-sandbox/src/taglib-template/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	29 Jun 2002 00:41:26 -0000	1.1
  +++ build.xml	2 Dec 2002 00:16:21 -0000	1.2
  @@ -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
  
  
  

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