I have a problem with my ant script! In my jUnit test I have to set a String with System.getProperty. Everything works fine when i use eclipse and vm arguments but with the ant script i am not able to pass the system properties...
Here my ant snippet:
<junit fork="yes" haltonfailure="false" showoutput="true">
<sysproperty key="sdkpath" value="some path"/>
or
<jvmarg value="-Dsdk_path=/some path/"/>
<batchtest fork="false" todir="${execution.home}">
<fileset dir="${basedir}/src">
<include name="**/**Test*.java" />
<exclude name="**/MonkeyTest.java"/>
</fileset>
</batchtest>
<formatter type="xml" usefile="true" />
<classpath refid="test.classpath" />
</junit>