You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by dl...@apache.org on 2002/02/06 18:45:25 UTC

cvs commit: jakarta-turbine-torque build.xml

dlr         02/02/06 09:45:25

  Modified:    .        build.xml
  Log:
  Patch by Andrus Adamchik <an...@objectstyle.org>:
  
  This fixes 2 bugs in build.xml:
  1. in JSDK1.4 org/w3c/dom/events/Event is present in rt.jar, so this
  can't be used for JAR detection
  2. Absense of xmlParserAPIs.jar was not correctly detected
  
  Revision  Changes    Path
  1.34      +3 -7      jakarta-turbine-torque/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/build.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -u -r1.33 -r1.34
  --- build.xml	6 Feb 2002 15:40:21 -0000	1.33
  +++ build.xml	6 Feb 2002 17:45:24 -0000	1.34
  @@ -117,7 +117,7 @@
       />
   
       <available
  -      classname="org/w3c/dom/events/Event"
  +      classname="org.w3c.dom.ranges.DocumentRange"
         property="xmlParserAPIs.present"
         classpathref="classpath"
       />
  @@ -174,8 +174,7 @@
     </target>
   
     <target
  -    name="check.xerces"
  -    unless="xerces.present">
  +    name="check.xerces">
   
       <antcall target="check.xercesImpl"/>
       <antcall target="check.xmlParserAPIs"/>
  @@ -194,7 +193,6 @@
     <target
       name="check.xmlParserAPIs"
       unless="xmlParserAPIs.present">
  -
       <antcall target="property-warning">
         <param name="name" value="xmlParserAPIs.jar"/>
         <param name="value" value="${xmlParserAPIs.jar}"/>
  @@ -382,9 +380,7 @@
       description="==> generates the torque.jar">
   
       <jar jarfile="${build.dir}/${final.name}.jar">
  -      <fileset dir="${build.dest}">
  -        <exclude name="**/package.html"/>
  -      </fileset>
  +      <fileset dir="${build.dest}" excludes="**/package.html"/>
         <fileset dir="${src.dir}/templates"/>
       </jar>
   
  
  
  

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