user2400564
user2400564

Reputation: 4817

How to set the classpath for the set of jars which has the different main class

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

Answers (1)

Jops
Jops

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

Related Questions