Mike Vittiglio
Mike Vittiglio

Reputation: 348

Change destination folder of JAR files in Netbeans 7

I'm working on a multiproject solution for a client and we're trying to have all our builds automatically go into a predetermined BIN folder. All the C++ projects were easily enough moved over but the Java side has proven not so easily configured. When I go to the project's properties and go to Build->Packaging the "JAR File:" text box shows a read-only text-box pointing to "dist/App.jar" (which I would like to change to "../../../bin/App.jar". Any thoughts on how to do this?

Upvotes: 6

Views: 12793

Answers (3)

Jason K.
Jason K.

Reputation: 417

add into build.xml

<target name="-post-jar">
    <copy file="${dist.jar}" todir="drive\path\"/>
</target>

Upvotes: 2

ghaliloo
ghaliloo

Reputation: 11

Did you check under the menu

[Run] --> [Set project configuration] --> [Customize]
You have plenty of options to change there, it is easy than that.

Good luck

Upvotes: 1

Pit
Pit

Reputation: 4046

You can change the dist-folder by editing the dist.dir key in the project.propertiesfile which is located in the nbproject directory from

dist.dir=dist

to

dist.dir=../../../bin

In my case the key is in line 24. The name of the jar-file itself is determined by the dist.jar key, if you would need to rename the file aswell.

Upvotes: 16

Related Questions