How do you include .jar files in a Java library so that it can be imported directly in a program?
|
closed as not a real question by sleske, Pascal Thivent, Oscar Reyes, IAdapter, Powerlord Oct 7 '09 at 17:16
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
hmm. using ant the folloeing may help
But you shall provide more information. In general I don't think that it's good style to provide a jar in a jar... |
|||
|
|
|
Sounds like you want to bundle your project, including dependencies, into a single jar file. Try one of the following:
|
|||
|
|
|
I think your question needs to be clarified. But, either add them to your CLASSPATH environment variable or use -classpath on java.exe |
|||
|
|
|
To clarify, you can't enclose jars within jars. If you're build a
|
|||
|
|
|
I think you want to include a classpath entry in the MANIFEST.MF. I can't believe this question hasn't been already answered on SO. Here are the instructions. Best way to to this ist using the ant snippet from tuergeist, because fiddling with the classpath entry is a bit cumbersome. UPDATE: This works also inside a EAR file. Most container do allow referencing JAR files inside the ear itself. The container has to use a special class loader for this. |
||||
|