Reputation: 4817
Can any one suggest me how to set the classpath for the set of jars which has the different main class?
Thanks in advance
Upvotes: 0
Views: 34
Reputation: 22715
You can use:
export CLASSPATH=/somePath/jar/firstJar.jar:/someOtherPath/jar/secondJar.jar
Without you giving more details, this is the only sensible answer to your question.
Upvotes: 1