Now excluding only 3 broken files in Annotations

This commit is contained in:
Bruce Eckel 2015-04-23 17:05:52 -07:00
parent 811220c396
commit 79ca89bd2e
2 changed files with 10 additions and 10 deletions

View File

@ -22,7 +22,7 @@
<target name="net_mindview_util"> <target name="net_mindview_util">
<javac includeantruntime="false" <javac includeantruntime="false"
classpath="${basedir}/.." classpath="${java.class.path};${basedir};${basedir}/.."
srcdir="${basedir}/../net/mindview/util/"> srcdir="${basedir}/../net/mindview/util/">
<compilerarg value="-Xmaxerrs"/> <compilerarg value="-Xmaxerrs"/>
<compilerarg value="10"/> <compilerarg value="10"/>
@ -31,7 +31,7 @@
<target name="net_mindview_atunit"> <target name="net_mindview_atunit">
<javac includeantruntime="false" <javac includeantruntime="false"
classpath="${basedir}/.." classpath="${java.class.path};${basedir};${basedir}/.."
srcdir="${basedir}/../net/mindview/atunit/"> srcdir="${basedir}/../net/mindview/atunit/">
<compilerarg value="-Xmaxerrs"/> <compilerarg value="-Xmaxerrs"/>
<compilerarg value="10"/> <compilerarg value="10"/>
@ -45,9 +45,10 @@
<fail message="J2SE8 required" unless="version1.8"/> <fail message="J2SE8 required" unless="version1.8"/>
<echo message="Building 'annotations'"/> <echo message="Building 'annotations'"/>
<javac includeantruntime="false" <javac includeantruntime="false"
classpath="${basedir}/.." classpath="${java.class.path};${basedir};${basedir}/.."
debug="true" debug="true"
srcdir="${basedir}"> srcdir="${basedir}"
excludes="InterfaceExtractorProcessor.java InterfaceExtractorProcessorFactory.java database/TableCreationProcessorFactory.java">
<compilerarg value="-Xmaxerrs"/> <compilerarg value="-Xmaxerrs"/>
<compilerarg value="10"/> <compilerarg value="10"/>
</javac> </javac>
@ -203,8 +204,8 @@
<antcall target="StackLStringTest"/> <antcall target="StackLStringTest"/>
<antcall target="UseCaseTracker"/> <antcall target="UseCaseTracker"/>
<antcall target="TableCreator"/> <antcall target="TableCreator"/>
<antcall target="InterfaceExtractorProcessor"/> <!-- <antcall target="InterfaceExtractorProcessor"/>
<antcall target="TableCreationProcessorFactory"/> <antcall target="TableCreationProcessorFactory"/> -->
<delete file="failures"/> <delete file="failures"/>
</target> </target>

View File

@ -6,14 +6,12 @@
Main build.xml for the source code for Main build.xml for the source code for
Thinking in Java, 4th Edition (Refreshed) by Bruce Eckel Thinking in Java, 4th Edition (Refreshed) by Bruce Eckel
Code available at http://www.MindView.net Code available at http://www.MindView.net
See installation instructions in README.md
See copyright notice in CopyRight.txt See copyright notice in CopyRight.txt
Ant available from: http://ant.apache.org/ Ant available from http://ant.apache.org
To see options, type: ant -p To see options, type: ant -p
NOTE: Temporarily excluded
annotations/build.xml
</description> </description>
<condition property="version1.8"> <condition property="version1.8">
@ -41,6 +39,7 @@
io/build.xml io/build.xml
xml/build.xml xml/build.xml
enumerated/build.xml enumerated/build.xml
annotations/build.xml
concurrency/build.xml concurrency/build.xml
gui/build.xml gui/build.xml
swt/build.xml swt/build.xml