Skip to content

Commit 79ca89b

Browse files
committed
Now excluding only 3 broken files in Annotations
1 parent 811220c commit 79ca89b

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

annotations/build.xml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<target name="net_mindview_util">
2424
<javac includeantruntime="false"
25-
classpath="${basedir}/.."
25+
classpath="${java.class.path};${basedir};${basedir}/.."
2626
srcdir="${basedir}/../net/mindview/util/">
2727
<compilerarg value="-Xmaxerrs"/>
2828
<compilerarg value="10"/>
@@ -31,7 +31,7 @@
3131

3232
<target name="net_mindview_atunit">
3333
<javac includeantruntime="false"
34-
classpath="${basedir}/.."
34+
classpath="${java.class.path};${basedir};${basedir}/.."
3535
srcdir="${basedir}/../net/mindview/atunit/">
3636
<compilerarg value="-Xmaxerrs"/>
3737
<compilerarg value="10"/>
@@ -45,9 +45,10 @@
4545
<fail message="J2SE8 required" unless="version1.8"/>
4646
<echo message="Building 'annotations'"/>
4747
<javac includeantruntime="false"
48-
classpath="${basedir}/.."
48+
classpath="${java.class.path};${basedir};${basedir}/.."
4949
debug="true"
50-
srcdir="${basedir}">
50+
srcdir="${basedir}"
51+
excludes="InterfaceExtractorProcessor.java InterfaceExtractorProcessorFactory.java database/TableCreationProcessorFactory.java">
5152
<compilerarg value="-Xmaxerrs"/>
5253
<compilerarg value="10"/>
5354
</javac>
@@ -203,8 +204,8 @@
203204
<antcall target="StackLStringTest"/>
204205
<antcall target="UseCaseTracker"/>
205206
<antcall target="TableCreator"/>
206-
<antcall target="InterfaceExtractorProcessor"/>
207-
<antcall target="TableCreationProcessorFactory"/>
207+
<!-- <antcall target="InterfaceExtractorProcessor"/>
208+
<antcall target="TableCreationProcessorFactory"/> -->
208209
<delete file="failures"/>
209210
</target>
210211

build.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66
Main build.xml for the source code for
77
Thinking in Java, 4th Edition (Refreshed) by Bruce Eckel
88
Code available at http://www.MindView.net
9+
See installation instructions in README.md
910
See copyright notice in CopyRight.txt
1011

11-
Ant available from: http://ant.apache.org/
12+
Ant available from http://ant.apache.org
1213

1314
To see options, type: ant -p
14-
15-
NOTE: Temporarily excluded
16-
annotations/build.xml
1715
</description>
1816

1917
<condition property="version1.8">
@@ -41,6 +39,7 @@
4139
io/build.xml
4240
xml/build.xml
4341
enumerated/build.xml
42+
annotations/build.xml
4443
concurrency/build.xml
4544
gui/build.xml
4645
swt/build.xml

0 commit comments

Comments
 (0)