Problem with classpath folder entries
Brought to you by:
grzegok
An exe doesn't start if the last classpath entry ends with "/".
For example,
this config works:
<classPath>
<mainClass>Main</mainClass>
<cp>config/</cp>
<cp>lib/log4j.jar</cp>
</classPath>
but this doesn't:
<classPath>
<mainClass>Main</mainClass>
<cp>lib/log4j.jar</cp>
<cp>config/</cp>
</classPath>
the launch4j.log:
Maybe it's the \" at the end of the Launcher args that causes the problem