Tag Archives: Eclipse

Modify heap size for Eclipse on OSX

I recently tried to load a sample IRS 1120 tax return in XML format (Example_TransmissionWithConsolidatedReturn.xml in their schema distribution) into the Eclipse XML editor. I shouldn’t need to tell you that the IRS schemas are quite complex. The “simple” return was over 12MB! After a lot of heaving, Eclipse just punted and complained about running [...]

Posted in Eclipse | Also tagged | Leave a comment

Maven plugin for Eclipse

The m2Eclipse plugin has been accepted into the Eclipse Foundation.  Perhaps this will push development along. Already there is a ton of new features in the current release – along with decent documentation! Thanks! The update site at codehaus is still alive but it looks like the new versions will be at http://m2eclipse.sonatype.org/update/ and for [...]

Posted in Eclipse, IDE, Maven | Also tagged | 2 Responses

Running your first JavaFX program in Eclipse

There is a plugin for Eclipse for developing JavaFX. The official installation instructions are ok to a point. You do get the plugin installed. But then what? I hope to save you a bit of time with this post. Create a new Java project. You don’t have to add anything to the classpath. I have [...]

Posted in Eclipse, JavaFX | Also tagged , | Leave a comment

Europa woes with JPA and Dali

I was looking forward to the Europa Eclipse release. There are nice things included. But,… For an all-in-one jee download you also had to go to the update manager to download DTP “enablement” to do anything. Poor out-of-the-box experience right away. After updating and rebooting I get this in a dialog box after the “resynching” [...]

Posted in IDE, JPA | Also tagged , | 1 Response

Eclipse batch formatting

You can format your code using Eclipse. I know, control shift F. But did you know you can format your code using Eclipse from a script/batch file? Export your formatting options to an xml file first then write a batch file that looks something like this: java -cp $ECLIPSE_HOME/startup.jar org.eclipse.core.launcher.Main -noupdate -application org.eclipse.jdt.core.JavaCodeFormatter -config format.config.xml [...]

Posted in Eclipse | Also tagged | Leave a comment

Run hsqldb from Eclipse

Introduction You may be running HSQLDB from an ANT script or a batch file. You can create an Eclipse run configuration to start and stop the HSQLDB server from within Eclipse. As a bonus when you export your project ANT scripts there will be a target created to run the server from ANT. Project Setup [...]

Posted in DB, Eclipse | Also tagged | Leave a comment