Whats wrong with this ant line?
So I wrote a few unit tests for a project I'm writing: they all end in the text "Test": I want to exclude them from my project standard java ant build script. I added the following bolded text to the excludes path of my ant script. However, my unit test, AgentIDTest.java, that is defined a few packages deep, is still compiled with this addition to the task. (And causes an error in the compile, as I'm not including JUnit into the javac task classpath.)
Any advice would be great. :)
<javac srcdir="${src}" excludes="org/osgi/**/* org/ungoverned/oscar/**/* **/*Test.java" destdir="${build}" classpath="${osgi.jar.location}" />
Any advice would be great. :)
<javac srcdir="${src}" excludes="org/osgi/**/* org/ungoverned/oscar/**/* **/*Test.java" destdir="${build}" classpath="${osgi.jar.location}" />
