My project has many dependencies and I tell winrun4j to include all of them by setting
classpath.1=D:\lib\*.jar
in the ini file.
The service log is telling me that that winrun4j is expanding classpath and generating a classpath:
[info] Expanding Classpath: D:\lib\*.jar
[info] Expanding Classpath: D:\lib\activation-1.1.1.jar
[info] Expanding Classpath: D:\lib\activemq-client-5.10.2.jar
[...]
[...]many, many other libs here
[...]
[warn] Exceeded maximum classpath size
[info] Generated Classpath: D:\lib\activation-.1.1.jar;D:\lib\activemq-client-5.10.2.jar;[...]
Why is winrun4j generating a classpath like this? Shouldn't it be enough to just take
D:\lib\*.jar
?
Any ideas for a workaround to get the service running with that many dependencies?