diff options
-rw-r--r-- | build.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -118,6 +118,12 @@ list of possible build targets. <exclude name="org/apache/fop/pdf/PDFEncryptionJCE.java" unless="jce.present"/> </patternset> + <!-- jfor RTF library has been moved here but needs tweaking before it compiles --> + <!-- remove this once the RTF library compiles --> + <patternset id="exclude-rtflib"> + <exclude name="org/apache/fop/rtf/rtflib/**/*.java"/> + </patternset> + <patternset id="base-sources"> <include name="**/*.java"/> <exclude name="**/*${ignore_this}"/> @@ -432,6 +438,10 @@ list of possible build targets. <patternset refid="exclude-jce-dependencies"/> <patternset refid="exclude-jai"/> <patternset refid="exclude-jimi"/> + + <!-- remove this once the RTF library compiles --> + <patternset refid="exclude-rtflib"/> + <classpath refid="libs-build-classpath"/> <patternset refid="base-sources"/> </javac> |