Blog Archives

Creating a self-extracting 7zip archive (multi-platform)

This post will explain how to create 7zip self-extracting archives for multiple platforms. 7zip (or its unix/linux sibling p7zip) is today bundled with almost all Linux distros and Solaris. Many, many users have it installed on Windows and it is

Posted in Uncategorized

Bundled JRE – Size matters

These days I believe the only right way to distribute a Java SE application is with an embedded JRE. Back in the old days you would give the user only the application itself and then tell him that it required

Posted in Uncategorized

NetBeans Platform Banner

Sometimes you need a top area of the Main Window that is not really a TopComponent but a fixed area that can be used for status, branding, etc. We refer to this as “a banner” for a lack of better

Posted in Uncategorized

Changing VM options for NetBeans RCP Applications

(NetBeans IDE 7.4) If you develop Maven-based NetBeans RCP applications you’ll quickly discover that the NetBeans IDE will launch your application with settings like this: -Xms24m -Xmx64m Yes, that’s true: a maximum of 64 Mbytes for your heap !! This

Posted in Uncategorized

Maven credentials

Do not put credentials into your project’s pom.xml file or your parent pom.xml file or any other pom file for that matter. Maven credentials should go in your Maven settings.xml file rather than being hardcoded into your pom.xml files for

Posted in Uncategorized

How to make Netbeans IDE Maven Repo Browser work with repo that requires authentication ?

You may not come across this issue unless the Maven Repository Manager you are using is configured to require authentication even for reading. The instructions below have been tested on Netbeans 7.2. Disabling Anonymous Access in Nexus At my site

Posted in Uncategorized

Maven: The Paint Application Tutorial

On Netbeans website you will find a great tutorial that can help you get started learning the Netbeans Platform : Paint Application Tutorial. I tried to follow this tutorial but doing it the Maven way. This turned out to have

Posted in Uncategorized

Library Wrapper the Maven way

(Applies to : Netbeans IDE v7.3 onwards) If your are working with the Netbeans Platform from within the Netbeans IDE then you may have noticed that when it comes to Maven there’s no project template to create a Netbeans Library

Posted in Uncategorized

Adding Platform modules to a Maven project

(Applies to : Netbeans v7.3+) In Netbeans Platform modules that you develop you may want to add dependencies from the Netbeans Platform cluster itself. In fact this is highly likely. Most of the documentation you can find will tell you

Tagged with: ,
Posted in Netbeans Platform

About this blog

This blog is all about my experience with the Netbeans Platform, in particular in a Mavenized version. I’ll blog here about my findings. This may or may not be useful to others. I’m also active on the Netbeans Platform mailing

Posted in Netbeans, Netbeans Platform