Eclipse, build folder elsewhere.

Have you created a useful tool? or Do you want to get help building one? This is the right place!
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Eclipse, build folder elsewhere.

Post by JMD »

Is it possible to make build.xml send the compiled stuff in a folder in the desktop for example? How can i do that?
xban1x
L2j Veteran
L2j Veteran
Posts: 1228
Joined: Thu Jan 17, 2013 9:46 am

Re: Eclipse, build folder elsewhere.

Post by xban1x »

Code: Select all

<property name="build" location="build" />
There i believe is set, though i have no knowledge of this :D
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Eclipse, build folder elsewhere.

Post by jurchiks »

Yes, that is the correct directive.
Works with relative paths (location="../../build") and absolute paths (location="C:\build").
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Re: Eclipse, build folder elsewhere.

Post by JMD »

Cool, thanks.
Post Reply