Quick question: How can I configure NetBeans
to copy a jar file (I am using sqlite.jar
for my application) to output folder
when compiling/building project in Java?
Copy jar to output folder when compiling/building project in Java
2.6k Views Asked by NewProger At
2
In NetBeans, switch to the "Files" tab. Expand your project (the one that is to be built).
Double click the
build.xml
.There are a number of build targets that you can override...the
build.xml
documents them for, but here is dumpI would probably recommend
-post-jar
If you haven't already done so, I would become farmiluar with the Ant
copy
task