You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by lu...@apache.org on 2003/02/13 02:01:28 UTC

cvs commit: jakarta-commons/el build.xml

luehe       2003/02/12 17:01:27

  Modified:    el       build.xml
  Log:
  Build servlet and JSP APIs before compiling commons-el
  
  Revision  Changes    Path
  1.2       +14 -2     jakarta-commons/el/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	4 Feb 2003 00:22:24 -0000	1.1
  +++ build.xml	13 Feb 2003 01:01:27 -0000	1.2
  @@ -151,7 +151,19 @@
     </target>
   
   
  -  <target name="compile" depends="static"
  +  <target name="build-servletapi" unless="servletapi.build.notrequired" >
  +    <echo>========== Building: ${servlet-api.jar}</echo>
  +    <ant dir="${api.home}/jsr154" target="jar"/>
  +  </target>
  +
  +
  +  <target name="build-jspapi">
  +    <echo>========== Building: ${jsp-api.jar}</echo>
  +    <ant dir="${api.home}/jsr152" target="jar"/>
  +  </target>
  +
  +
  +  <target name="compile" depends="static,build-servletapi,build-jspapi"
      description="Compile shareable components">
       <javac  srcdir="${source.home}"
              destdir="${build.home}/classes"
  
  
  

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