larryi      2002/09/26 19:06:18

  Modified:    proposals/PasswordPrompter build.xml
  Log:
  Update to make it easier to build against a different (i.e. earlier) version of
  Tomcat so backwards compatible versions can be built.
  
  Revision  Changes    Path
  1.4       +8 -3      jakarta-tomcat/proposals/PasswordPrompter/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/proposals/PasswordPrompter/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml 30 Jul 2002 12:22:25 -0000      1.3
  +++ build.xml 27 Sep 2002 02:06:18 -0000      1.4
  @@ -17,6 +17,12 @@
     <property name="tomcat.build.modules" value="${tomcat.build}/modules"/>
     <property name="tomcat.dist.modules" value="${tomcat.dist}/modules"/>
   
  +  <property name="commons-logging.jar" 
location="${tomcat.build}/lib/common/commons-logging.jar" />
  +
  +  <property name="tomcat.classes.dir" location="${tomcat.build}/classes"/>
  +  <property name="jtc.util.jar" 
location="${tomcat.build}/lib/common/tomcat-util.jar"/>
  +  <property name="tomcat.classes" value="${tomcat.classes.dir};${jtc.util.jar}"/>
  +
     <!-- ==================== Initialization - check if build and dist present 
========== -->
     <target name="init">
       <available file="${tomcat.build.modules}" property="build.modules.available"/>
  @@ -49,9 +55,8 @@
           optimize="${optimize}"
              debug="${debug}"
           destdir="${tomcat.build.modules}/PasswordPrompter/WEB-INF/classes">
  -       <classpath location="${tomcat.build}/classes"/>
  -       <classpath location="${tomcat.build}/lib/common/tomcat-util.jar"/>
  -       <classpath location="${tomcat.build}/lib/common/commons-logging.jar"/>
  +       <classpath path="${tomcat.classes}"/>
  +       <classpath location="${commons-logging.jar}"/>
       </javac>
   
       <mkdir dir="${tomcat.build.modules}/PasswordPrompter/WEB-INF/lib"/>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to