Hi all,
I've got an application that usesed several 3rd party libraries. When
I build the project in Netbeans, it runs perfectly. However, the
distribution jar file fails to find the needed the library files. How
can get Netbeans to include/reference the needed 3rd party libraries to
get an application that I can actually distribute?
Thanks,
David H.
Roedy Green - 09 Jan 2006 04:30 GMT
>How
>can get Netbeans to include/reference the needed 3rd party libraries to
>get an application that I can actually distribute?
I think most people use an ANT script to build the distributable.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
Oliver Wong - 09 Jan 2006 20:10 GMT
> Hi all,
>
[quoted text clipped - 3 lines]
> can get Netbeans to include/reference the needed 3rd party libraries to
> get an application that I can actually distribute?
You'd need to deliver the 3rd party JARs along with your JAR file, and
ask the user to make sure that all of thoses jars are on the classpath.
Another solution might be to write your own custom classloader to seek out
the appropriate jars yourself.
- Oliver