Fixed the 'ant jskad-compile' target. I swear it worked once, but I have not

a clue why.  Running ant with 1.3.1 vs. 1.4, maybe?
This commit is contained in:
dchandler 2002-10-04 03:24:27 +00:00
parent f968d42b55
commit f796a44967

View file

@ -80,8 +80,13 @@
<javac destdir="${jskadbin}">
<classpath refid="entire.class.path"/>
<src path="${source}"/>
<include name="org/thdl/tib/**,org/thdl/util/**" />
<exclude name="**/*.ini,**/*.html" />
<include name="org/thdl/tib/**" />
<include name="org/thdl/util/**" />
<exclude name="**/*.ini" />
<exclude name="**/*.html" />
<!-- Exclude JUnit tests: -->
<exclude name="**/*Test.java" />
<exclude name="**/*AllTests.java" />
</javac>
</target>