1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
--- a/build/build.xml
+++ b/build/build.xml
@@ -60,6 +60,7 @@
<!-- Common classpaths -->
<path id="support-classpath">
<fileset dir="${lib}" includes="*.jar" excludes="asm*.jar,org.eclipse.*.jar,qdox*.jar,jibx*.jar"/>
+ <fileset dir="/usr/share/java" includes="bcel.jar" />
</path>
<!-- Optional components -->
@@ -243,12 +244,14 @@
deprecation="on">
<classpath>
<fileset dir="${lib}" includes="*.jar" excludes="asm*.jar,org.eclipse.*.jar,qdox*.jar,${schemaname}.jar,${toolsname}.jar"/>
+ <fileset dir="/usr/share/java" includes="log4j-1.2.jar" />
</classpath>
</javac>
<java classname="org.jibx.binding.Compile" fork="yes" failonerror="true">
<classpath>
<pathelement path="${schemadest}"/>
<fileset dir="${lib}" includes="*.jar" excludes="asm*.jar,org.eclipse.*.jar,qdox*.jar,${schemaname}.jar,${toolsname}.jar"/>
+ <fileset dir="/usr/share/java" includes="bcel.jar" />
</classpath>
<arg value="${src}/schema-noprefix-binding.xml"/>
<arg value="${src}/schema-xsprefix-binding.xml"/>
@@ -1263,6 +1266,7 @@
<javadoc packagenames="org.jibx.runtime,org.jibx.runtime.impl,org.jibx.extras"
sourcepath="${src}:${extrassrc}"
destdir="${userdocs}"
+ locale="en"
author="true"
version="true"
noindex="true"
@@ -1274,6 +1278,7 @@
<bottom><table width='80%%'><tr><td width='50%%'><p align='center'><a href='http://www.jibx.org/' target='_top'><font size='3'><b>Project Web Site</b></font></a></td><td width='50%%'><p align='center'></td></tr></table></bottom>
<classpath>
<fileset dir="${lib}" includes="*.jar"/>
+ <fileset dir="/usr/share/java" includes="bcel.jar,log4j-1.2.jar,xpp3.jar" />
</classpath>
</javadoc>
</target>
@@ -1288,6 +1293,7 @@
excludepackagenames="org.jibx.binding.ant"
sourcepath="${src}:${extrassrc}"
destdir="${devdocs}"
+ locale="en"
author="true"
version="true"
noindex="true"
@@ -1412,7 +1418,7 @@
<!-- Intermediate targets, not to be run directly. -->
<target name="build-jibx" depends="compile-run,compile-bind,compile-extras"/>
- <target name="tojars" depends="build-jibx,jar-run,jar-bind,jar-extras,jar-schema,jar-tools"/>
+ <target name="tojars" depends="build-jibx,jar-run,jar-bind,jar-extras,jar-schema"/>
<!-- Targets for building and testing the framework. -->
<target name="debug" depends="setdebug,build-jibx"/>
|