<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AgileJava &#187; Tools</title>
	<atom:link href="http://www.agilejava.eu/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.agilejava.eu</link>
	<description>by Ivar Grimstad</description>
	<lastBuildDate>Thu, 22 Jul 2010 14:38:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>A Special Year</title>
		<link>http://www.agilejava.eu/2010/07/22/a-special-year/</link>
		<comments>http://www.agilejava.eu/2010/07/22/a-special-year/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 14:38:55 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[JavaOne]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Sun]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=689</guid>
		<description><![CDATA[The first time I attended JavaOne was 1999 and I have only missed it once since then. Sadly, this year will be the second time I am not present there. I have become kind of used to the week in San Francisco every year. It is the perfect way to start the summer with a [...]]]></description>
			<content:encoded><![CDATA[<p>The first time I attended JavaOne was 1999 and I have only missed it once since then. Sadly, this year will be the second time I am not present there. I have become kind of used to the week in San Francisco every year. It is the perfect way to start the summer with a visit to that beautiful city. Since it is in September this year, it would probably been the perfect way to end the summer (&#8230;we have short summers here in Scandinavia&#8230;).</p>
<p>I will for sure miss the massive input and inspiration this conference gives me and enables me to keep up-to-date on everything that is happening in the Java Community. This year&#8217;s conference is also special since it is the first time Oracle is hosting the show. It feels like a good idea to co-host it with Oracle Develop and I hope it will be a success to be continued. Next year, I will definitely be attending, one way or the other&#8230;!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=A+Special+Year+http://bit.ly/bZKQsE" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=A+Special+Year+http://bit.ly/bZKQsE" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/07/22/a-special-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Emulator Workaround</title>
		<link>http://www.agilejava.eu/2010/05/31/android-emulator-workaround/</link>
		<comments>http://www.agilejava.eu/2010/05/31/android-emulator-workaround/#comments</comments>
		<pubDate>Mon, 31 May 2010 11:42:57 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=579</guid>
		<description><![CDATA[Here is a small tip if you are having trouble running the Android Emulator for code that calls native methods and getting an error message similar to this: JNI WARNING: method declared to return 'Ljava/nio/ByteBuffer;' returned 'Ljava/nio/ReadWriteDirectByteBuffer;' ... ;.nativeAsBuffer ('Ljava/nio/ByteBuffer;' not found) The simple workaround is to add the following to the onCreate method of [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a small tip if you are having trouble running the Android Emulator for code that calls native methods and getting an error message similar to this:</p>
<pre>JNI WARNING: method declared to return 'Ljava/nio/ByteBuffer;' returned 'Ljava/nio/ReadWriteDirectByteBuffer;'
... ;.nativeAsBuffer ('Ljava/nio/ByteBuffer;' not found)</pre>
<p>The simple workaround is to add the following to the <strong>onCreate</strong> method of your main activity:</p>
<pre>ByteBuffer dummy = ByteBuffer.allocate(0); dummy = null;</pre>
<p>This way the classloader is &#8220;forced&#8221; to load ByteBuffer. This is not needed when running on a device, only the emulator as it seems.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Android+Emulator+Workaround+http://bit.ly/bvBk7M" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Android+Emulator+Workaround+http://bit.ly/bvBk7M" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/05/31/android-emulator-workaround/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans and Android Tip</title>
		<link>http://www.agilejava.eu/2010/05/11/netbeans-and-android-tip/</link>
		<comments>http://www.agilejava.eu/2010/05/11/netbeans-and-android-tip/#comments</comments>
		<pubDate>Tue, 11 May 2010 14:59:16 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=542</guid>
		<description><![CDATA[Developing Android applications using NetBeans is usually as easy as stealing candy from a baby. But the last couple of days I have been struggling with an application that uses a couple of external libraries. The other developers (using Eclipse) have a couple of scripts that they run to get the .so files included in [...]]]></description>
			<content:encoded><![CDATA[<p>Developing Android applications using NetBeans is usually as easy as stealing candy from a baby. But the last couple of days I have been struggling with an application that uses a couple of external libraries. The other developers (using Eclipse) have a couple of scripts that they run to get the <strong>.so</strong> files included in the<strong> .apk</strong> file. When I tried running the same scrips on the <strong>.apk</strong> generated from NetBeans, the application failed to start in the emulator. I nearly switched to Eclipse (god forbid), but then I saw the light again. As it turns out, NetBeans does not include the java api jar-files in the external libs in the dex-file by default which resulted in a <strong>ClassNotFoundException</strong>.</p>
<p>The solution is as simple as you would expect when you have used NetBeans for a while. Add the following to the <em>build.xml</em> file in the project root (replace the dummy values for the signjar target):</p>
<pre>&lt;target name="-pre-jar"&gt;
   &lt;copy todir="${build.classes.dir}"&gt;
      &lt;fileset dir="${external.libs.dir}"&gt;
         &lt;include name="*.jar"/&gt;
      &lt;/fileset&gt;
   &lt;/copy&gt;
&lt;/target&gt;
&lt;target name="-post-jar"&gt;
   &lt;zip update="true" destfile="${dist.apk}"&gt;
      &lt;zipfileset dir="${external.libs.dir}" includes="*.so" prefix="lib/armeabi"/&gt;
   &lt;/zip&gt;
   &lt;zip destfile="tmp.apk"&gt;
      &lt;zipfileset src="${dist.apk}"&gt;
         &lt;exclude name="META-INF/*.*" /&gt;
      &lt;/zipfileset&gt;
   &lt;/zip&gt;
   &lt;move file="tmp.apk" tofile="${dist.apk}" /&gt;
   &lt;signjar jar="${dist.apk}" alias="alias" storepass="secret" keypass="secret2" keystore="my_keystore"/&gt;
&lt;/target&gt;</pre>
<p>You also need to add <strong>external.libs.dir=&lt;your lib folder&gt;</strong> to you <em>&lt;project root&gt;/nbproject/project.properties file</em>.</p>
<p>Now you can install the resulting .apk file using <em>adb install</em> or by running/debugging directly from NetBeans. Remember to follow the tip for asset-files in a previous <a href="http://www.agilejava.eu/2010/04/29/android-emulator-and-netbeans/" target="_self">post</a> if you have that kind of resources.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=NetBeans+and+Android+Tip+http://bit.ly/9VWwNo" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=NetBeans+and+Android+Tip+http://bit.ly/9VWwNo" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/05/11/netbeans-and-android-tip/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Android Emulator and NetBeans</title>
		<link>http://www.agilejava.eu/2010/04/29/android-emulator-and-netbeans/</link>
		<comments>http://www.agilejava.eu/2010/04/29/android-emulator-and-netbeans/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 12:45:01 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=527</guid>
		<description><![CDATA[Whenever you ask or search for help regarding Android development, you end up with some fix related to the Eclipse ADT plugin or the Android SDK tools. My intention is to fix that by repeating parts of a great tip I found at Tim Perry&#8217;s blog. It is about how to get hold of the [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever you ask or search for help regarding Android development, you end up with some fix related to the Eclipse ADT plugin or the Android SDK tools. My intention is to fix that by repeating parts of a great tip I found at <a title="NetBeans trick" href="http://tim-perry.co.uk/blog/2010/02/20/PhoneGap_and_Netbeans" target="_blank">Tim Perry&#8217;s blog</a>. It is about how to get hold of the resources placed under the <em>/assets </em>folder in you Android project while running your applictaion in the Emulator from NetBeans. If your application tries to access resources from the <strong>AssetManager</strong> you will get a <strong>FileNotFoundException</strong>. The reason for this is that the assets are not packaged with the <em>.apk</em> like it is if you package and deploy it using the SDK tools.</p>
<p>The solution is:</p>
<ol>
<li>Go into <em>nbproject/project.properties</em> and add &#8216;<strong>assets.available=true</strong>&#8216;</li>
</ol>
<p>Voila! You will now be able to run, debug and step through your code as you would expect.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Android+Emulator+and+NetBeans+http://bit.ly/9qyTCG" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Android+Emulator+and+NetBeans+http://bit.ly/9qyTCG" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/04/29/android-emulator-and-netbeans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google App Engine</title>
		<link>http://www.agilejava.eu/2010/01/27/google-app-engine/</link>
		<comments>http://www.agilejava.eu/2010/01/27/google-app-engine/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 15:00:45 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=514</guid>
		<description><![CDATA[It is amazing what a month in South Africa does to you. Things like Twitter, Facebook and blogging becomes pretty distant&#8230; But now I have been home for a while, Sun+Oracle has been approved by EU, I have finished (almost) my kitchen renovation and celebrated yet another birthday, so it is time to get started [...]]]></description>
			<content:encoded><![CDATA[<p>It is amazing what a month in South Africa does to you. Things like <a title="Ivar Grimstad on Twitter" href="http://www.twitter.com/ivar_grimstad" target="_blank">Twitter</a>, <a title="Ivar Grimstad on Facebook" href="http://www.facebook.com/ivar.grimstad" target="_blank">Facebook</a> and blogging becomes pretty distant&#8230; But now I have been home for a while, Sun+Oracle has been approved by EU, I have finished (<em>almost</em>) my kitchen renovation and celebrated <em>yet</em> another birthday, so it is time to get started again!</p>
<p>After a discussion with a colleague at a coffee break this morning, I decided to try out <a title="Google App Engine" href="http://code.google.com/appengine/" target="_blank">Google App Engine</a>. The getting started guide is a great place to start. It gives you a great walk-through setting up the development environment and creating a sample application. Since I am no big fan of Eclipse, I installed the <a title="Netbeans Support for Google App Engine" href="http://kenai.com/projects/nbappengine/pages/Home" target="_blank">Google App Engine Plugin</a> for NetBeans. After resolving a small issue regarding path settings (see solution <a title="Issue 1226" href="http://code.google.com/p/googleappengine/issues/detail?id=1226#makechanges" target="_blank">here</a>), it was up and running perfectly.</p>
<p>Next steps will be to figure out what changes that has to be made to my existing applications to be able to deploy them on app engine. Probably the server side of <a title="YouOweMe Android" href="http://kenai.com/projects/youoweme" target="_blank">YouOweMe</a> will be the first candidate. Or maybe the <a title="KanbanFX" href="http://www.agilejava.eu/kanbanfx/" target="_self">KanbanFX</a> server. I haven&#8217;t decided yet&#8230;</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Google+App+Engine+http://bit.ly/bDoras" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Google+App+Engine+http://bit.ly/bDoras" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/01/27/google-app-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Company Internal Twitter &#8211; good or evil?</title>
		<link>http://www.agilejava.eu/2009/11/10/company-internal-twitter-good-or-evil/</link>
		<comments>http://www.agilejava.eu/2009/11/10/company-internal-twitter-good-or-evil/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:22:18 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cool Stuff]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=495</guid>
		<description><![CDATA[This week Yammer was introduced to the entire company. Simply put, Yammer is a company internal twitter where coworkers can connect and share information by posting messages. At first, I was skeptical to the whole idea thinking it would generate an overload of noise for a couple of weeks until dying slowly like most initiatives [...]]]></description>
			<content:encoded><![CDATA[<p>This week <a title="Yammer" href="http://www.yammer.com" target="_blank">Yammer</a> was introduced to the entire company. Simply put, Yammer is a company internal twitter where coworkers can connect and share information by posting messages.</p>
<p>At first, I was skeptical to the whole idea thinking it would generate an overload of noise for a couple of weeks until dying slowly like most initiatives to share knowledge within companies. But after having thought about it, I really hope that will not happen. It is actually a brilliant way of building a knowledge base within the company. Everyone who has tried to establish some form of knowledge exchange know how hard it is to get people to contribute.</p>
<p>But by &#8220;hiding&#8221; it behind some familiar technology like twitter, people actually contribute without knowing it. If you think about it, only the things people are interested in will be posted and discussed in such a forum. People will only put energy in discussions they have strong feelings for. The things most people have feelings for are probably pretty relevant things for your organization. And it is by default fully searchable with the newest items most visible.</p>
<p>So with my limited experience of yammer (have used it two days), I will conclude that it is actually a good thing. Now we just have to hope that it does not die a silent death when it is not that <em>new-and-cool</em> anymore&#8230;</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Company+Internal+Twitter+%E2%80%93+good+or+evil...+http://bit.ly/b73JOi" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Company+Internal+Twitter+%E2%80%93+good+or+evil...+http://bit.ly/b73JOi" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/11/10/company-internal-twitter-good-or-evil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Week With IntelliJ IDEA</title>
		<link>http://www.agilejava.eu/2009/10/23/one-week-with-intellij-idea/</link>
		<comments>http://www.agilejava.eu/2009/10/23/one-week-with-intellij-idea/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 08:54:09 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IntelliJ]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=422</guid>
		<description><![CDATA[A week has gone since JetBrains announced the free and open source IntelliJ IDEA Community Edition. I have been giving it a try and is actually pretty satisfied with it. Even though I am not as familiar with all the shortcuts as I am with NetBeans, it feels comfortable. It does not differ that much. [...]]]></description>
			<content:encoded><![CDATA[<p>A week has gone since JetBrains announced the free and open source <a title="IntelliJ IDEA Free and Open Source" href="http://www.jetbrains.com/idea/nextversion/free_java_ide.html" target="_blank">IntelliJ IDEA Community Edition</a>.</p>
<p>I have been giving it a try and is actually pretty satisfied with it. Even though I am not as familiar with all the shortcuts as I am with NetBeans, it feels comfortable. It does not differ that much. The only problem I have encountered with the default setup is the shortcut for comment/uncomment code (<em>Shift+/</em>). But this is mainly because I am using Swedish or Norwegian keyboard setup where the <em>/</em> is entered by hitting <em>Shift+7</em>. This was easily fixed by adding <em>Ctrl+Shift+7</em> as a shortcut combination.</p>
<p>I could not find a live template for test methods, but it was easy to create a new one. Here is a simple example:</p>
<pre>public void test$NAME$(){
   $END$
}</pre>
<p>I am not sure if I like the way multiple projects are handled. If you work with multiple projects in IDEA, each project is opened in a separate frame. In NetBeans you can choose to have multiple projects open in the same workspace and/or group them in project groups. It is probably just a matter of habits, but I like the flexibility to be able to decide that myself and not be forced to open every new project in a new frame.</p>
<p>To conclude, I really like IDEA Community Edition, an will most probably choose use it when I am working on a project where I am in no direct need of Java EE support in the IDE. Otherwise, <a title="NetBeans" href="http://www.netbeans.org" target="_blank">NetBeans</a> is still my favorite IDE. <a title="Eclipse" href="http://www.eclipse.org" target="_blank">Eclipse</a> is still out of the question as long as Maven is involved.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=One+Week+With+IntelliJ+IDEA+http://bit.ly/2H1Obp" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=One+Week+With+IntelliJ+IDEA+http://bit.ly/2H1Obp" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/10/23/one-week-with-intellij-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IntelliJ IDEA &#8211; Now Free and Open Source</title>
		<link>http://www.agilejava.eu/2009/10/16/intellij-idea-now-free-and-open-source/</link>
		<comments>http://www.agilejava.eu/2009/10/16/intellij-idea-now-free-and-open-source/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 13:52:52 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IntelliJ]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=384</guid>
		<description><![CDATA[Despite the fact that it comes with a price tag, IntelliJ IDEA from JetBrains has since long been a very popular IDE in the Java community. The news that they now provide a free and open source community version was therefore very welcome. If you have been reading this blog, you probably know that I [...]]]></description>
			<content:encoded><![CDATA[<p>Despite the fact that it comes with a price tag, IntelliJ IDEA from JetBrains has since long been a very popular IDE in the Java community. The news that they now provide <a title="IntelliJ IDEA - Now Free and Open Source" href="http://www.jetbrains.com/idea/nextversion/free_java_ide.html" target="_blank">a free and open source community version</a> was therefore very welcome.</p>
<p>If you have been reading this blog, you probably know that I am quite a big fan of <a title="NetBeans" href="http://www.netbeans.org/" target="_blank">NetBeans</a> and have written quite a few comments about the areas it excels over <a title="Eclipse" href="http://www.eclipse.org/" target="_blank">Eclipse</a>. I have not <em>really</em> tried IntelliJ IDEA yet, but now the Community Edition has been downloaded and installed. JetBrains has provided a detailed <a title="Comparison of IDEA Community and Ultimate editions" href="http://www.jetbrains.com/idea/nextversion/editions_comparison_matrix.html" target="_blank">comparison</a> between the Community and Ultimate edition.</p>
<p><strong>First Impression</strong><br />
The first impression is that it is fast. The startup time is significantly faster than NetBeans. The editor is responsive, shortcuts and refactorings just as you expect them to be. It sure is ugly, menus and dialogs looks like some left over AWT student project hack from the 90&#8242;s, but who cares. After all we are here to code, not to enjoy the view.</p>
<p><strong>Maven</strong><br />
The next test is to open one of my existing multi-module <a title="Maven home" href="http://maven.apache.org/" target="_blank">maven</a> projects. Just as with NetBeans, it is just to select the root <em>pom.xml</em> file and open it. All sub-modules and dependencies are resolved just as expected. It scatters a lot of <em>.ipr</em>, <em>.iwl</em> and <em>.iml</em> files all over the place, but I can live with that as long as it updates them with changes from the <em>pom.xml</em> files.</p>
<p>When I check the Module Settings, it seems like the compiler output is set to <strong>/classes</strong> and not <strong>/target</strong> as normally by the maven convention. But when i build the project, it uses the maven configuration and puts the compiled classes under target. <em>Why?</em> Well, as long as it works it is okay with me&#8230;</p>
<p><strong>Web and Enterprise</strong><br />
As the comparison table shows, there is no support for any web, mobile or enterprise frameworks in the Community edition. Nor are there support for application servers. You would have to buy the Ultimate edition for this. Fair enough, they have to make money somewhere.</p>
<p><strong>Conclusion</strong><br />
The Community Edition of IntelliJ IDEA is the perfect choice if you are building a simple java application. It lacks support for development using web, mobile or enterprise technologies. If you want an IDE that is comparable to for example Eclipse Gallileo or NetBeans you would have to go for the Ultimate Edition. In my view <strong>NetBeans</strong> is the better choice.</p>
<p><em>Disclaimer: I  have only scratched the surface here and will continue explore the Community Edition. My opinions may change as I go&#8230;</em></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=IntelliJ+IDEA+%E2%80%93+Now+Free+and+Open+Source+http://bit.ly/2kVSWC" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=IntelliJ+IDEA+%E2%80%93+Now+Free+and+Open+Source+http://bit.ly/2kVSWC" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/10/16/intellij-idea-now-free-and-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Thoughts in General</title>
		<link>http://www.agilejava.eu/2009/10/08/some-thoughts-in-general/</link>
		<comments>http://www.agilejava.eu/2009/10/08/some-thoughts-in-general/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 16:03:15 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[KanbanFX]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=374</guid>
		<description><![CDATA[I have been kind of lazy writing this blog lately. After keeping it up pretty okay during summer, the pace has now slowed to a minimum. I think it can be partly explained by the fact that I have been using Twitter for some of the stuff I used to write here and that my [...]]]></description>
			<content:encoded><![CDATA[<p>I have been kind of lazy writing this blog lately. After keeping it up pretty okay during summer, the pace has now slowed to a minimum. I think it can be partly explained by the fact that I have been using <a title="Ivar Grimstad on Twitter" href="http://www.twitter.com/ivar_grimstad">Twitter</a> for some of the stuff I used to write here and that my new HTC Hero Android phone made tweeting more convenient than ever&#8230;</p>
<p>My intentions are to use this blog for subjects that cannot easily be said in 140 characters and twitter for the short, more daily stuff&#8230;</p>
<p>Well, so what has happened since last time. Since I have solely been using <a title="NetBeans" href="http://www.netbeans.org" target="_blank">NetBeans</a> the last couple of years for Java development, I decided to give <a title="Eclipse" href="http://www.eclipse.org/" target="_blank">Eclipse</a> Gallileo a chance. It took me an hour of frustration to conclude that it still sucks for <a title="Apache Maven" href="http://maven.apache.org/" target="_blank">Maven</a> based projects. Why it should be so hard is beyond my comprehension! In NetBeans, you just choose open project, selects the pom.xml file and everything is fine. Dependencies are resolved as they are defined in Maven, no stupid .classpath, .project and .settings rubbish created that makes Eclipse to totally hick-up if a dependency is changed.</p>
<p>Apart from my unsuccessful flirt with Eclipse, I have continued development of <a href="http://www.agilejava.eu/2009/09/03/kanbanfx/" target="_self">KanbanFX</a>. It has been converted to a maven project and besided the information on <a title="KanbanFX on Kenai" href="http://kenai.com/projects/kanbanfx" target="_blank">Kenai</a>, I have created a page for it <a title="KanbanFX" href="http://www.agilejava.eu/kanbanfx/" target="_self">here</a> where you can try it out. Kanban is increasing in popularity, <a href="http://twitter.com/henrikkniberg" target="_blank">@henrikkniberg</a> had 300 people on his Kanban vs Scrum session at JAOO this week.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Some+Thoughts+in+General+http://bit.ly/aUQq44" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Some+Thoughts+in+General+http://bit.ly/aUQq44" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/10/08/some-thoughts-in-general/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KanbanFX</title>
		<link>http://www.agilejava.eu/2009/09/03/kanbanfx/</link>
		<comments>http://www.agilejava.eu/2009/09/03/kanbanfx/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 15:00:49 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[KanbanFX]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=351</guid>
		<description><![CDATA[I really like the simplicity in Kanban. It should be enough for most small projects, and especially AO teams. Even though all you really need as tool support is a white-board and a couple of post-it notes, larger organizations often require you to hook into existing tools for requirement management, issue tracking etc. I have [...]]]></description>
			<content:encoded><![CDATA[<p>I really like the simplicity in Kanban. It should be enough for most small projects, and especially AO teams. Even though all you really need as tool support is a white-board and a couple of post-it notes, larger organizations often require you to hook into existing tools for requirement management, issue tracking etc.</p>
<p>I have not been able to find any tool fulfilling this need, so I decided to create on myself. Thereby, <strong>KanbanFX</strong> was born!</p>
<p>KanbanFX is a JavaFX implementation of a Kanban board. Source code and a very limited demo version is available on Kenai:</p>
<p style="text-align: center;"><a title="KanbanFX" href="http://kenai.com/projects/kanbanfx" target="_blank">http://kenai.com/projects/kanbanfx</a>.</p>
<p style="text-align: left;">Please join the project if you want to contribute. I am pretty sure that I will need help with at least the graphical elements when we get to that&#8230;</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=KanbanFX+http://bit.ly/9UVq1U" title="Post to Twitter"><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=KanbanFX+http://bit.ly/9UVq1U" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/09/03/kanbanfx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
