diff options
author | Glen Mazza <gmazza@apache.org> | 2004-04-01 23:24:57 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-04-01 23:24:57 +0000 |
commit | 2dc772585087baa3cc763702e88ccdb4e4c005ae (patch) | |
tree | 69dd142c82fcdd47ab3e212068773074b9f9b42b /examples/embedding/build.xml | |
parent | a054ab3b7e22af6c163b5d68c04bf5868958a59e (diff) | |
download | xmlgraphics-fop-2dc772585087baa3cc763702e88ccdb4e4c005ae.tar.gz xmlgraphics-fop-2dc772585087baa3cc763702e88ccdb4e4c005ae.zip |
Updated examples to use Commons-Logging.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197475 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'examples/embedding/build.xml')
-rw-r--r-- | examples/embedding/build.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/embedding/build.xml b/examples/embedding/build.xml index 4ad0a13d6..203d92a1d 100644 --- a/examples/embedding/build.xml +++ b/examples/embedding/build.xml @@ -39,6 +39,7 @@ <include name="xerces*.jar"/> <include name="xalan*.jar"/> <include name="commons-io*.jar"/> + <include name="commons-logging*.jar"/> </fileset> <fileset dir="${fop.lib.dir}/../build"> <include name="fop.jar"/> @@ -119,6 +120,24 @@ </classpath> </java> </target> + <target name="example6" depends="compile" description="Runs the DOM to PDF example"> + <echo message="Running the Object to PDF example"/> + <java classname="${name}.ExampleDOM2PDF" fork="yes"> + <classpath> + <path refid="project.class.path"/> + <pathelement location="${build.dest}"/> + </classpath> + </java> + </target> + <target name="example7" depends="compile" description="Runs the SVG to PDF example"> + <echo message="Running the Object to PDF example"/> + <java classname="${name}.ExampleSVG2PDF" fork="yes"> + <classpath> + <path refid="project.class.path"/> + <pathelement location="${build.dest}"/> + </classpath> + </java> + </target> <!-- =================================================================== --> <!-- Clean targets --> <!-- =================================================================== --> |