Skip to main content

Posts

Showing posts with the label eclipse

Don't leave home without these Eclipse 3.5.x (Galileo) Plugins...

M2Eclipse: http://m2eclipse.sonatype.org/sites/m2e JarPlug: http://www.simontuffs.com/jar-plug LogWatcher: Without Update Manager: http://graysky.sourceforge.net OEPE (Oracle Enterprise Pack for Eclipse): h ttp://download.oracle.com/otn_software/oepe/galileo Google Plugins for GWT and GAE: http://dl.google.com/eclipse/plugin/3.5 Subeclipse SVN: http://subclipse.tigris.org/update_1.6.x Android: http://dl-ssl.google.com/android/eclipse ATF (Ajax Tools Framework): installation guide: http://wiki.eclipse.org/ATF/Installing A good comprehensive list of Eclipse plugins can be found here: http://www.tutego.de/java/eclipse/plugin/eclipse-plugins.html Have fun! Lofi.

HOW-TO: OEPE - FastSwap with Maven2 and M2Eclipse Plugin

At the moment there is not enough information if you want to jump start with OEPE (and of course using FastSwap) and Maven2 (using M2Eclipse plugin). This HOW-TO shows you how to achieve this. You need to have Eclipse (3.4 or 3.5), WLS (10.3 or 11) OEPE, Maven2 and M2Eclipse installed correctly before you can follow the steps below: 1. Create a web application with the webapp wizard (dynamic web project). Choose a webapp based on WLS (10.3 in my case). Please change following settings afterwards to be Maven complianced: Source for web: src/main/webapp Source for Java: src/main/java 2. Turn on Maven project on the project above ("mavenized the project") with M2Eclipse. 3. After you mavenized the project you can delete the directory build/classes since Maven uses target/classes directory. Everything should be customized to Maven directory structure automatically. 4. You can add src/test/java - if you need it src/test/resources - and also src/main/resources ...

The eclipse.ini File "Hell"...

If you want to change some settings in your Eclipse 3.2.x you have two choices: Use the extra settings in your command line, something like eclipse -vm ... -vmargs ... Put the extra settings into the eclipse.ini file, something like: -vm ... -vmargs ... If you put your extra settings into the eclipse.ini file you have to be careful: Do not insert an empty line at the end of your eclipse.ini file . If you do this Eclipse will completely ignore your settings! Cheers, Lofi.