0

I wanted to know if it is possible to include an external jar inside my own library project of defined classes. Suppose I am using abc.jar and I have xyz.jar is there a way to pack xyz inside abc? so that my project/application has only one jar on the outside?

chotu123
  • 85
  • 1
  • 3
  • 11
  • If u use the support jar, you've notice it is working that way already – eduyayo Dec 14 '14 at 23:02
  • Look at this link [Classpath including JAR within a JAR][1] [1]: http://stackoverflow.com/questions/183292/classpath-including-jar-within-a-jar – Auli Dec 15 '14 at 16:45

1 Answers1

0

Yes, just create a Java Project and include all the libraries you wanted to use, build it then copy your built jar and import this to your current project and use it as xyz.* and abc.*.

:)

bhans
  • 51
  • 4