When deploying my application on a Hudson Server (windows machine) , I'm having problems calling java.exe because my class-path is too long -- Windows taps out after certain length.
The classpath
is basically hundreds of Jar
files separated by semicolons
Assume the following classpath would be too large if each jar is explicitly listed in the classpath:
<path id="classpath.project">
<fileset dir="lib" includes="**/*.jar" />
</path>
What can I do in ant to shorten my classpath?