Browse Source

Updated Common IO to first release.

Build updated so the transcoder packages are built correctly (reflecting the changes in the source code)
JUnit failures now let the build fail (note: JUnit is currently not activated in Gump runs)


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197872 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Jeremias Maerki 20 years ago
parent
commit
2dfdacc2e7
3 changed files with 13 additions and 8 deletions
  1. 13
    8
      build.xml
  2. BIN
      lib/commons-io-1.0.jar
  3. BIN
      lib/commons-io-dev-20040206.jar

+ 13
- 8
build.xml View File

<include name="lib/batik.jar"/> <include name="lib/batik.jar"/>
<include name="lib/avalon-framework*.jar"/> <include name="lib/avalon-framework*.jar"/>
<include name="lib/commons-logging*.jar"/> <include name="lib/commons-logging*.jar"/>
<include name="lib/commons-io*.jar"/>
</fileset> </fileset>


<fileset dir="${basedir}" id="dist.src"> <fileset dir="${basedir}" id="dist.src">
<patternset id="transcoder-classes"> <patternset id="transcoder-classes">
<!-- General classes --> <!-- General classes -->
<patternset> <patternset>
<include name="org/apache/fop/apps/Document*"/>
<include name="org/apache/fop/fo/FOTreeControl*"/>
<include name="org/apache/fop/fo/FOTreeListener*"/>
<include name="org/apache/fop/apps/Fop.class"/>
<include name="org/apache/fop/apps/FOPException.class"/>
<include name="org/apache/fop/fo/Constants.class"/>
<include name="org/apache/fop/fo/FOTreeBuilder.class"/>
<include name="org/apache/fop/area/AreaTreeControl*"/> <include name="org/apache/fop/area/AreaTreeControl*"/>
<include name="org/apache/fop/svg/**"/> <include name="org/apache/fop/svg/**"/>
<include name="org/apache/fop/fonts/**"/> <include name="org/apache/fop/fonts/**"/>
<include name="org/apache/fop/image/Abstract*"/> <include name="org/apache/fop/image/Abstract*"/>
<include name="org/apache/fop/image/analyser/*.class"/> <include name="org/apache/fop/image/analyser/*.class"/>
<include name="org/apache/fop/util/CMYKColorSpace*.class"/> <include name="org/apache/fop/util/CMYKColorSpace*.class"/>
<include name="org/apache/fop/util/StreamUtilities.class"/>
<include name="org/apache/fop/util/ASCII*.class"/>
<include name="org/apache/fop/util/*OutputStream.class"/> <include name="org/apache/fop/util/*OutputStream.class"/>
<include name="org/apache/fop/util/Finalizable.class"/> <include name="org/apache/fop/util/Finalizable.class"/>
</patternset> </patternset>
<unjar dest="${transcoder-deps}"> <unjar dest="${transcoder-deps}">
<patternset> <patternset>
<include name="org/apache/avalon/framework/*"/> <include name="org/apache/avalon/framework/*"/>
<include name="org/apache/commons/logging/*"/>
<include name="org/apache/avalon/framework/activity/*"/>
<include name="org/apache/avalon/framework/configuration/*"/>
<include name="org/apache/avalon/framework/container/*"/>
<include name="org/apache/commons/logging/**"/>
<include name="org/apache/commons/io/CopyUtils.class"/> <include name="org/apache/commons/io/CopyUtils.class"/>
<include name="org/apache/commons/io/IOUtils.class"/> <include name="org/apache/commons/io/IOUtils.class"/>
<include name="org/apache/commons/io/output/ProxyOutputStream.class"/> <include name="org/apache/commons/io/output/ProxyOutputStream.class"/>
</javac> </javac>
<echo message="Running basic functionality tests for fop-transcoder.jar"/> <echo message="Running basic functionality tests for fop-transcoder.jar"/>
<mkdir dir="${build.dir}/test-reports/fop-transcoder"/> <mkdir dir="${build.dir}/test-reports/fop-transcoder"/>
<junit>
<junit haltonerror="yes">
<sysproperty key="basedir" value="${basedir}"/> <sysproperty key="basedir" value="${basedir}"/>
<formatter type="plain"/> <formatter type="plain"/>
<classpath> <classpath>
</junit> </junit>
<echo message="Running basic functionality tests for fop-transcoder-allinone.jar"/> <echo message="Running basic functionality tests for fop-transcoder-allinone.jar"/>
<mkdir dir="${build.dir}/test-reports/fop-transcoder-allinone"/> <mkdir dir="${build.dir}/test-reports/fop-transcoder-allinone"/>
<junit>
<junit haltonerror="yes">
<sysproperty key="basedir" value="${basedir}"/> <sysproperty key="basedir" value="${basedir}"/>
<formatter type="plain"/> <formatter type="plain"/>
<classpath> <classpath>
</junit> </junit>
<echo message="Running basic functionality tests for fop.jar"/> <echo message="Running basic functionality tests for fop.jar"/>
<mkdir dir="${build.dir}/test-reports/fop"/> <mkdir dir="${build.dir}/test-reports/fop"/>
<junit>
<junit haltonerror="yes">
<sysproperty key="basedir" value="${basedir}"/> <sysproperty key="basedir" value="${basedir}"/>
<formatter type="plain"/> <formatter type="plain"/>
<classpath> <classpath>

BIN
lib/commons-io-1.0.jar View File


BIN
lib/commons-io-dev-20040206.jar View File


Loading…
Cancel
Save