You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by cr...@apache.org on 2006/04/19 05:30:13 UTC

svn commit: r395119 - /xml/commons/trunk/build.xml

Author: crossley
Date: Tue Apr 18 20:30:11 2006
New Revision: 395119

URL: http://svn.apache.org/viewcvs?rev=395119&view=rev
Log:
Remove stuff from an old version of Forrest. It was already mostly
commented-out and not used. See the ./readme-build.txt for the current method.
However, the now unnecessary "docs" target was causing the top-level
build to fail.

Modified:
    xml/commons/trunk/build.xml

Modified: xml/commons/trunk/build.xml
URL: http://svn.apache.org/viewcvs/xml/commons/trunk/build.xml?rev=395119&r1=395118&r2=395119&view=diff
==============================================================================
--- xml/commons/trunk/build.xml (original)
+++ xml/commons/trunk/build.xml Tue Apr 18 20:30:11 2006
@@ -1,9 +1,4 @@
 <?xml version="1.0"?>
-<!--FIXME IG
-<!DOCTYPE project [
-  <!ENTITY forrest-targets SYSTEM "file:./forrest-targets.ent">
-]>
--->
 <!-- 
 Simplistic meta-build file to call various other xml-commons build files.
 Currently merely uses <ant> to build all subprojects, then 
@@ -50,13 +45,6 @@
 
   <property name="site.dir" value="${dist.dir}/site"/>
   <property name="docs.content.dir" value="src/documentation/content"/>
-  <!-- FIXME IG -->
-  <!--Import the Forrest targets -->
-  <!--
-  <property environment="env"/>
-  <property name="forrest.home" value="${env.FORREST_HOME}"/>
-  <import file="${env.FORREST_HOME}/forrest.build.xml"/>
-  -->
 
   <!-- Public Targets -->
   <target name="all"
@@ -121,28 +109,10 @@
     </ant>
   </target>
 
-  <target name="docs" depends="prepare-extra-docs, site">
-    <!-- call forrest to generate the docs -->
-    <!--
-    <ant target="site"/>
-    -->
-  </target>
-
-  <target name="prepare-extra-docs">
-    <copy todir="${docs.content.dir}/components">
-      <fileset dir="java/src/org/apache/xml/resolver" includes="LICENSE.resolver.txt"/>
-    </copy>
-  </target>
-
   <target name="javadocs">
     <!-- copy the various javadocs into the website docs -->
     <copy todir="${site.dir}/components/apidocs">
       <fileset dir="java/build/apidocs"/>
     </copy>  
   </target>
-  
-  <!-- import the Forrest build targets -->
-  <!--FIXME IG
-  &forrest-targets;
-  -->
 </project>