October 23, 2009
I spent lot of time today to find how to zip an eclipse directory with ANT WHILE KEEPING the root directory in the archive, thus when unziping, clients get only one directory called eclipse containing all eclipse’s stuff.
Here’s my directories structure:
Here is the ant code to zip the eclipse directory into a zip called eclipse.zip containing the eclipse directory as root:
<zip destfile="eclipse.zip">
<zipfileset dir="buildfolder">
<include name="eclipse/**/**" />
</zipfileset>
</zip>
Leave a Comment » |
Eclipse Misc |
Permalink
Posted by Manuel
October 15, 2009
Hi there,
After pressing accidentally several keys on my keyboard I lost the Auto Completion in my PDE environment !!!
I already had the same problem long time ago but I wasn’t able to remember how I solved it. In order to solve it quickly next time and of course for others encountering it here is the solution:
Window -> Preferences -> Java -> Editor ->Content Assist Advanced -> Restore Defaults in order to have Java Proposals checked.
On a side note, I am curious to understand how I disabled this feature with my keyboard ….
Leave a Comment » |
Eclipse Misc |
Permalink
Posted by Manuel