<?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.eu &#187; NetBeans</title>
	<atom:link href="http://www.agilejava.eu/tag/netbeans/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.agilejava.eu</link>
	<description>by Ivar Grimstad</description>
	<lastBuildDate>Fri, 15 Jul 2011 16:35:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<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>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+and+Android+Tip+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D542" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+and+Android+Tip+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D542" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/05/11/netbeans-and-android-tip/feed/</wfw:commentRss>
		<slash:comments>8</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>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Android+Emulator+and+NetBeans+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D527" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Android+Emulator+and+NetBeans+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D527" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2010/04/29/android-emulator-and-netbeans/feed/</wfw:commentRss>
		<slash:comments>3</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>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Google+App+Engine+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D514" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Google+App+Engine+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D514" title=" "> </a></p></div>]]></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>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>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=One+Week+With+IntelliJ+IDEA+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D422" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=One+Week+With+IntelliJ+IDEA+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D422" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/10/23/one-week-with-intellij-idea/feed/</wfw:commentRss>
		<slash:comments>1</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>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=IntelliJ+IDEA+%E2%80%93+Now+Free+and+Open+Source+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D384" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=IntelliJ+IDEA+%E2%80%93+Now+Free+and+Open+Source+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D384" title=" "> </a></p></div>]]></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>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Some+Thoughts+in+General+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D374" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Some+Thoughts+in+General+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D374" title=" "> </a></p></div>]]></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>NetBeans 6.8</title>
		<link>http://www.agilejava.eu/2009/08/05/netbeans-6-8/</link>
		<comments>http://www.agilejava.eu/2009/08/05/netbeans-6-8/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 11:47:40 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=337</guid>
		<description><![CDATA[NetBeans 6.8 M1 is available for download. According to the roadmap, the final release is scheduled to be released Autumn 2009. Usually, I am pretty fast installing the absolute latest version, but this time I think I will wait at least form the M2. It has not been that long since the 6.7 and 6.7.1 [...]]]></description>
			<content:encoded><![CDATA[<p>NetBeans 6.8 M1 is available for download. According to the <a title="NetBeans Roadmap" href="http://www.netbeans.org/community/releases/roadmap.html" target="_blank">roadmap</a>, the final release is scheduled to be released Autumn 2009.</p>
<p>Usually, I am pretty fast installing the absolute latest version, but this time I think I will wait at least form the M2. It has not been that long since the 6.7 and 6.7.1 releases and I am pretty satisfied. The only thing annoying me is <a title="161416" href="http://www.netbeans.org/issues/show_bug.cgi?id=161416" target="_blank">Bug 161416</a>. Hopefully it will be fixed in 6.8&#8230;</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+6.8+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D337" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+6.8+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D337" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/08/05/netbeans-6-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.7 is here!</title>
		<link>http://www.agilejava.eu/2009/06/30/netbeans-6-7-is-here/</link>
		<comments>http://www.agilejava.eu/2009/06/30/netbeans-6-7-is-here/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 06:02:20 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=306</guid>
		<description><![CDATA[The roadmap said it should be released in June, so they just made it Se my previous post on NetBeans 6.7 beta for what to expect from it. The release information is available here.]]></description>
			<content:encoded><![CDATA[<p>The roadmap said it should be released in June, so they just made it <img src='http://www.agilejava.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Se my previous post on <a title="NetBeans 6.7 beta" href="http://www.agilejava.eu/2009/04/30/netbeans-67-beta/" target="_self">NetBeans 6.7 beta</a> for what to expect from it.</p>
<p>The release information is available <a title="NetBeans 6.7 Release information" href="http://www.netbeans.org/community/releases/67/index.html" target="_blank">here</a>.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+6.7+is+here%21+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D306" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+6.7+is+here%21+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D306" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/06/30/netbeans-6-7-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.7 beta</title>
		<link>http://www.agilejava.eu/2009/04/30/netbeans-67-beta/</link>
		<comments>http://www.agilejava.eu/2009/04/30/netbeans-67-beta/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 06:07:21 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=195</guid>
		<description><![CDATA[After having used NetBeans 6.7 Milestones for a while, I was very happy when the beta was released yesterday. I immediately installed it and started trying it out. The milestones had a tendency to use a LOT of cpu, but so far I have not experienced this with the beta. Maybe since I was stuck [...]]]></description>
			<content:encoded><![CDATA[<p>After having used NetBeans 6.7 Milestones for a while, I was very happy when the beta was released yesterday. I immediately installed it and started trying it out. The milestones had a tendency to use a LOT of cpu, but so far I have not experienced this with the beta. Maybe since I was stuck up in meetings yesterday and did not have time to code. Today will be better <img src='http://www.agilejava.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2>Some Highlights</h2>
<ul>
<li>
<h3>Connected Developer (Kenai)</h3>
<p>Create Kenai-hosted projects from within the NetBeans IDE<br />
Locate and open sources for Kenai-hosted projects in the IDE<br />
Full integration with Bugzilla</li>
<li>
<h3>Maven</h3>
<p>Support for Web Services creation and consumption and J2EE<br />
POM Editor and Navigator enhancements</li>
<li>
<h3>PHP</h3>
<p>Code coverage and Selenium support<br />
PHPUnit output improvements</li>
<li>
<h3>C/C++</h3>
<p>Support of popular Qt library and tools</li>
<li>
<h3>Groovy and Grails</h3>
<p>Out-of-the-box support for Grails 1.1</li>
<li>
<h3>Profiler</h3>
<p>Enhanced Self Diagnosis (&#8220;Profile Me Now!&#8221;)</li>
<li>
<h3>Java ME / Mobility</h3>
<p>Full support for SVG Rich Components in the Visual Mobile Designer</li>
</ul>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+6.7+beta+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D195" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=NetBeans+6.7+beta+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D195" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/04/30/netbeans-67-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kenai</title>
		<link>http://www.agilejava.eu/2009/04/28/kenai/</link>
		<comments>http://www.agilejava.eu/2009/04/28/kenai/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 05:58:21 +0000</pubDate>
		<dc:creator>Ivar Grimstad</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Kenai]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://www.agilejava.eu/?p=189</guid>
		<description><![CDATA[Kenai is Sun&#8217;s connected developer destination. It is a integrated suite of developer services where you can host your open source projects. Currently the following features are supported: Source Code Management (Subversion, Mercurial, and Git) Issue Tracking (Jira and Bugzilla) Wiki Forums Mailing Lists Download facility for documents Evolving integration with NetBeans When you create [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Kenai" href="http://www.kenai.com" target="_blank">Kenai</a> is Sun&#8217;s connected developer destination. It is a integrated suite of developer services where you can host your open source projects. Currently the following features are supported:</p>
<ul>
<li> Source Code Management (Subversion, Mercurial, and Git)</li>
<li>Issue Tracking (Jira and Bugzilla)</li>
<li>Wiki</li>
<li>Forums</li>
<li>Mailing Lists</li>
<li>Download facility for documents</li>
<li>Evolving integration with NetBeans</li>
</ul>
<p>When you create an account at <a title="Kenai" href="http://www.kenai.com" target="_blank">Kenai</a>, you can host up to five projects for free. I imported two of my hobby projects to try it out, and I liked it. See wikipedia for <a href="http://en.wikipedia.org/wiki/Comparison_of_open_source_software_hosting_facilities" target="_blank">a comparison of open source software hosting facilities</a>.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Kenai+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D189" title=" "><img class="nothumb" src="http://www.agilejava.eu/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Kenai+http%3A%2F%2Fagilejava.eu%2F%3Fp%3D189" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.agilejava.eu/2009/04/28/kenai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

