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

View File

@ -6,14 +6,12 @@
Main build.xml for the source code for
Thinking in Java, 4th Edition (Refreshed) by Bruce Eckel
Code available at http://www.MindView.net
See installation instructions in README.md
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
NOTE: Temporarily excluded
annotations/build.xml
</description>
<condition property="version1.8">
@ -41,6 +39,7 @@
io/build.xml
xml/build.xml
enumerated/build.xml
annotations/build.xml
concurrency/build.xml
gui/build.xml
swt/build.xml