diff options
author | Glen Mazza <gmazza@apache.org> | 2004-03-31 10:55:07 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-03-31 10:55:07 +0000 |
commit | a054ab3b7e22af6c163b5d68c04bf5868958a59e (patch) | |
tree | 158b4e54cf28f6dd1926de530309ffc2b1ceb3d4 /build.xml | |
parent | b0ef412c716311de35850f0d6ae56a1b7f7d8acf (diff) | |
download | xmlgraphics-fop-a054ab3b7e22af6c163b5d68c04bf5868958a59e.tar.gz xmlgraphics-fop-a054ab3b7e22af6c163b5d68c04bf5868958a59e.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
Conversion of Avalon to Commons-Logger. (Will still need to update the
examples, which I will take care of next; Jeremias will be modifying
the PDF libraries for more efficient use of the CL loggers.)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197474 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -79,6 +79,7 @@ list of possible build targets. <include name="lib/xml-apis.jar"/> <include name="lib/batik.jar"/> <include name="lib/avalon-framework*.jar"/> + <include name="lib/commons-logging*.jar"/> </fileset> <fileset dir="${basedir}" id="dist.src"> @@ -503,6 +504,7 @@ list of possible build targets. <war warfile="${build.dir}/fop.war" webxml="${src.dir}/conf/web.xml"> <lib dir="${lib.dir}"> <include name="avalon-framework*.jar"/> + <include name="commons-logging*.jar"/> <include name="batik*.jar"/> <include name="commons-io*.jar"/> </lib> @@ -575,6 +577,7 @@ list of possible build targets. <unjar dest="${transcoder-deps}"> <patternset> <include name="org/apache/avalon/framework/*"/> + <include name="org/apache/commons/logging/*"/> <include name="org/apache/commons/io/CopyUtils.class"/> <include name="org/apache/commons/io/IOUtils.class"/> <include name="org/apache/commons/io/output/ProxyOutputStream.class"/> @@ -584,13 +587,15 @@ list of possible build targets. <fileset dir="${lib.dir}"> <include name="commons-io*.jar"/> <include name="avalon-framework*.jar"/> - </fileset> + <include name="commons-logging*.jar"/> + </fileset> </unjar> <mkdir dir="${transcoder-deps}/legal"/> <copy todir="${transcoder-deps}/legal"> <fileset dir="${lib.dir}"> <include name="avalon.LICENSE.txt"/> <include name="commons-io.LICENSE.txt"/> + <include name="commons-logging.LICENSE.txt"/> </fileset> </copy> <jar jarfile="${build.dir}/fop-transcoder-allinone.jar"> |