<?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>ProNetBeans &#187; NetBeans</title>
	<atom:link href="http://pronetbeans.com/archives/category/netbeans/feed" rel="self" type="application/rss+xml" />
	<link>http://pronetbeans.com</link>
	<description>The source for learning NetBeans.</description>
	<lastBuildDate>Sat, 22 Sep 2012 14:43:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>NetBeans 7.3 New and Noteworthy</title>
		<link>http://pronetbeans.com/archives/263?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-3-new-and-noteworthy</link>
		<comments>http://pronetbeans.com/archives/263#comments</comments>
		<pubDate>Sat, 22 Sep 2012 14:10:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=263</guid>
		<description><![CDATA[The &#8216;New and Noteworthy&#8217; page for NetBeans 7.3 continues to shape up. http://wiki.netbeans.org/NewAndNoteworthyNB73 Some of the new/updated features that I found interesting include: Added option to export/import java formatting and indentation for all languages. Hint : A new warning that shows places that may cause NullPointException was added: Less memory needed to for Maven projects [...]]]></description>
				<content:encoded><![CDATA[<p>The &#8216;New and Noteworthy&#8217; page for NetBeans 7.3 continues to shape up. <a title="http://wiki.netbeans.org/NewAndNoteworthyNB73" href="http://wiki.netbeans.org/NewAndNoteworthyNB73" target="_blank">http://wiki.netbeans.org/NewAndNoteworthyNB73</a></p>
<p>Some of the new/updated features that I found interesting include:</p>
<p><span id="more-263"></span></p>
<ul>
<li>Added option to export/import java formatting and indentation for all languages.</li>
<li>Hint : A new warning that shows places that may cause NullPointException was added:</li>
<li>Less memory needed to for Maven projects</li>
<li>Profiler : CPU snapshots can now be compared the same way as memory snapshots.</li>
<li>JPA : Stand alone jpql editor is added, you can run your jpql from ide directly instead of running your j2se jpa application</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/263/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Atlassian SDK with NetBeans</title>
		<link>http://pronetbeans.com/archives/236?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-atlassian-sdk-with-netbeans</link>
		<comments>http://pronetbeans.com/archives/236#comments</comments>
		<pubDate>Sun, 12 Feb 2012 21:26:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Atlassian]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[atlassian]]></category>
		<category><![CDATA[bamboo]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=236</guid>
		<description><![CDATA[To create custom plugins and functionality for Atlassian products, you can download and use the Atlassian plugin SDK following instructions here : https://developer.atlassian.com/display/DOCS/Installing+the+Atlassian+Plugin+SDK The key part is to add the atlassian SDK BIN directory to your path. After the plugin project is initially created the Maven project comes up as &#8220;unloadable&#8221; in the NetBeans Projects [...]]]></description>
				<content:encoded><![CDATA[<p>To create custom plugins and functionality for Atlassian products, you can download and use the Atlassian plugin SDK following instructions here : https://developer.atlassian.com/display/DOCS/Installing+the+Atlassian+Plugin+SDK</p>
<p>The key part is to add the atlassian SDK BIN directory to your path.</p>
<p>After the plugin project is initially created the Maven project comes up as &#8220;unloadable&#8221; in the NetBeans Projects window. Also, nodes like &#8220;Source Packages&#8221; do not show up.</p>
<p>Next, the official instructions here say that once you generate a new project, the Maven POM for that project needs to be modified as specified here : https://developer.atlassian.com/display/DOCS/Configuring+NetBeans+to+use+the+Atlassian+Plugin+SDK</p>
<p><span id="more-236"></span></p>
<p>It states &#8220;In order for NetBeans to pick up the necessary files to recognize this correctly you need to add the following to the project&#8217;s pom.xml&#8221; like this :<br />
<code><br />
&lt;repositories&gt;<br />
&lt;repository&gt;<br />
&lt;id&gt;atlassian&lt;/id&gt;<br />
&lt;name&gt;Atlassian Repository&lt;/name&gt;<br />
&lt;url&gt;&lt;/url&gt;<br />
&lt;snapshots&gt;<br />
&lt;enabled&gt;true&lt;/enabled&gt;<br />
&lt;/snapshots&gt;<br />
&lt;releases&gt;<br />
&lt;enabled&gt;true&lt;/enabled&gt;<br />
&lt;/releases&gt;<br />
&lt;/repository&gt;<br />
&lt;/repositories&gt;</code></p>
<p>&lt;pluginRepositories&gt;<br />
&lt;pluginRepository&gt;<br />
&lt;id&gt;atlassian-public&lt;/id&gt;<br />
&lt;url&gt;&lt;/url&gt;<br />
&lt;releases&gt;<br />
&lt;enabled&gt;true&lt;/enabled&gt;<br />
&lt;/releases&gt;<br />
&lt;snapshots&gt;<br />
&lt;enabled&gt;true&lt;/enabled&gt;<br />
&lt;/snapshots&gt;<br />
&lt;/pluginRepository&gt;<br />
&lt;/pluginRepositories&gt;</p>
<p>I thought it was odd that the URL tag would be empty.</p>
<p>And in the properties section of the POM I added this :<br />
<code><br />
&lt;maven.local.repo&gt;C:Atlassianatlassian-plugin-sdk-3.2repository&lt;/maven.local.repo&gt;<br />
</code><br />
However when both in NetBeans and via the atlas-mvn on command line I run the install goal to build the project it complains that the URL tag is empty and should not be.</p>
<p>Searching Atlassian&#8217;s Answers site, I found another person complaining of this issue : https://answers.atlassian.com/questions/22694/netbeans-complains-repositories-repository-atlassian-url-is-missing</p>
<p>There was no answer, so I just decided to enter an arbitrary value for the URL.<br />
<code><br />
&lt;url&gt;foo&lt;/url&gt;<br />
</code><br />
Additionally I also realized when they said to use the Atlassian SDK repository in the &lt;maven.local.repo&gt; property they weren&#8217;t kidding. I had pointed NetBeans to use that version of Maven (via Tools &gt; Options &gt; Miscellaneous &gt; Maven. I assumed this would work, but apparently not, thus requiring the &lt;maven.local.repo&gt; property to explicitly define the Atlassian-provided repository.</p>
<p>After making these changes the NetBeans project went from being &#8220;unloaded&#8221; to looking &#8220;normal&#8221; in the project window.</p>
<p>I could then clean and build it correctly directly in NetBeans without having to use the atlas-mvn on the command line.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/236/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 7.2 New and Noteworthy Features Start To Take Shape</title>
		<link>http://pronetbeans.com/archives/224?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-2-new-and-noteworthy-features-start-to-take-shape</link>
		<comments>http://pronetbeans.com/archives/224#comments</comments>
		<pubDate>Tue, 31 Jan 2012 04:21:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[7.2]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=224</guid>
		<description><![CDATA[If you are browsing around the NetBeans Wiki you may have noticed the NetBeans 7.2 features &#8220;New and Noteworthy&#8221; have started to develop. http://wiki.netbeans.org/NewAndNoteworthyNB72 There are some interesting planned features such as the ability to import/export projects a zip files, the Maven repositories are getting their own top-level node in the Services window instead of [...]]]></description>
				<content:encoded><![CDATA[<p>If you are browsing around the NetBeans Wiki you may have noticed the NetBeans 7.2 features &#8220;New and Noteworthy&#8221; have started to develop. http://wiki.netbeans.org/NewAndNoteworthyNB72</p>
<p>There are some interesting planned features such as the ability to import/export projects a zip files, the Maven repositories are getting their own top-level node in the Services window instead of having a separate Maven Repository window, and a very interesting feature for allowing debugger breakpoints to conditionally enable/disable other breakpoints.</p>
<p>So far, the new debugger feature is most interesting and I&#8217;ll be testing it out in daily builds as soon as I get a chance.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/224/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 7.1.1 Details</title>
		<link>http://pronetbeans.com/archives/222?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-1-1-details</link>
		<comments>http://pronetbeans.com/archives/222#comments</comments>
		<pubDate>Tue, 31 Jan 2012 04:15:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[7.1.1]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=222</guid>
		<description><![CDATA[NetBeans 7.1.1 is intended to be a bug fix release. You can view the details here : http://wiki.netbeans.org/NetBeans_711]]></description>
				<content:encoded><![CDATA[<p>NetBeans 7.1.1 is intended to be a bug fix release. You can view the details here : http://wiki.netbeans.org/NetBeans_711</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/222/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans Roadmap Updated to Include 7.1.1 and 7.2 Timelines</title>
		<link>http://pronetbeans.com/archives/219?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-roadmap-updated-to-inlcude-7-1-1-and-7-2-timelines</link>
		<comments>http://pronetbeans.com/archives/219#comments</comments>
		<pubDate>Tue, 31 Jan 2012 04:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=219</guid>
		<description><![CDATA[For those that follow such trivial pieces of news like me, the NetBeans team has updated the visual roadmap to include tentative release timelines for NetBeans 7.1.1 and 7.2. See here : http://netbeans.org/community/releases/roadmap.html]]></description>
				<content:encoded><![CDATA[<p>For those that follow such trivial pieces of news like me, the NetBeans team has updated the visual roadmap to include tentative release timelines for NetBeans 7.1.1 and 7.2.</p>
<p>See here : http://netbeans.org/community/releases/roadmap.html</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/219/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Microchip corporation chooses NetBeans over Eclipse for its new MPLAB IDE.</title>
		<link>http://pronetbeans.com/archives/217?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-microchip-corporation-chooses-netbeans-over-eclipse-for-its-new-mplab-ide</link>
		<comments>http://pronetbeans.com/archives/217#comments</comments>
		<pubDate>Fri, 23 Sep 2011 23:56:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[microchip]]></category>
		<category><![CDATA[mplab]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=217</guid>
		<description><![CDATA[In a wonderful article from Geertjan Wielenga, NetBeans is highlighted over Eclipse in its selection by Microchip to power its IDE for MPLAB. Check it out here : http://blogs.oracle.com/geertjan/entry/open_source_framework_powers_latest]]></description>
				<content:encoded><![CDATA[<p>In a wonderful article from Geertjan Wielenga, NetBeans is highlighted over Eclipse in its selection by Microchip to power its IDE for MPLAB.</p>
<p>Check it out here : <a href="http://blogs.oracle.com/geertjan/entry/open_source_framework_powers_latest" title="http://blogs.oracle.com/geertjan/entry/open_source_framework_powers_latest" target="_blank">http://blogs.oracle.com/geertjan/entry/open_source_framework_powers_latest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/217/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 7.0.1 Patches Released</title>
		<link>http://pronetbeans.com/archives/200?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-0-1-patches-released</link>
		<comments>http://pronetbeans.com/archives/200#comments</comments>
		<pubDate>Mon, 05 Sep 2011 23:04:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[7.0]]></category>
		<category><![CDATA[7.0.1]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[patches]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=200</guid>
		<description><![CDATA[The NetBeans team has released a patch for NetBeans IDE 7.0.1. The patch includes bug fixes in modules for Java, Maven, C/C++, RCP Platform, HTML editor, Java Profiler GUI Builder, and more. Detailed list of bugs can be found here : https://netbeans.org/bugzilla/buglist.cgi?status_whiteboard=701patch1&#038;status_whiteboard_type=allwordssubstr Get the patch info here : http://wiki.netbeans.org/NetBeans7.0PatchesInfo]]></description>
				<content:encoded><![CDATA[<p>The NetBeans team has released a patch for NetBeans IDE 7.0.1.</p>
<p>The patch includes bug fixes in modules for Java, Maven, C/C++, RCP Platform, HTML editor, Java Profiler GUI Builder, and more. </p>
<p>Detailed list of bugs can be found here : <a href="https://netbeans.org/bugzilla/buglist.cgi?status_whiteboard=701patch1&#038;status_whiteboard_type=allwordssubstr" title="https://netbeans.org/bugzilla/buglist.cgi?status_whiteboard=701patch1&#038;status_whiteboard_type=allwordssubstr" target="_blank">https://netbeans.org/bugzilla/buglist.cgi?status_whiteboard=701patch1&#038;status_whiteboard_type=allwordssubstr</a></p>
<p>Get the patch info here : <a href="http://wiki.netbeans.org/NetBeans7.0PatchesInfo" title="http://wiki.netbeans.org/NetBeans7.0PatchesInfo" target="_blank">http://wiki.netbeans.org/NetBeans7.0PatchesInfo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/200/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 7.0.1 Released</title>
		<link>http://pronetbeans.com/archives/197?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-0-1-released</link>
		<comments>http://pronetbeans.com/archives/197#comments</comments>
		<pubDate>Mon, 18 Jul 2011 23:03:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[7.0]]></category>
		<category><![CDATA[7.0.1]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=197</guid>
		<description><![CDATA[http://netbeans.org/community/releases/70/]]></description>
				<content:encoded><![CDATA[<p><a href="http://netbeans.org/community/releases/70/" title="http://netbeans.org/community/releases/70/" target="_blank">http://netbeans.org/community/releases/70/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/197/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 7.0 Released</title>
		<link>http://pronetbeans.com/archives/194?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-0-released</link>
		<comments>http://pronetbeans.com/archives/194#comments</comments>
		<pubDate>Mon, 18 Apr 2011 23:02:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[7.0]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=194</guid>
		<description><![CDATA[http://netbeans.org/community/releases/70/]]></description>
				<content:encoded><![CDATA[<p><a href="http://netbeans.org/community/releases/70/" title="http://netbeans.org/community/releases/70/" target="_blank">http://netbeans.org/community/releases/70/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/194/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans IDE 6.9 Milestone 1 Available</title>
		<link>http://pronetbeans.com/archives/23?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-ide-6-9-milestone-1-available</link>
		<comments>http://pronetbeans.com/archives/23#comments</comments>
		<pubDate>Tue, 16 Feb 2010 17:58:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[6.9]]></category>
		<category><![CDATA[milestone]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=23</guid>
		<description><![CDATA[The NetBeans team has released NetBeans IDE 6.9 Milestone 1 Available. Highlights include: NetBeans Platform OSGi interoperability - New Maven project archetypes available - Easy import of OSGi bundles for use in Ant projects Java EE - Support for Contexts and Dependency Injection - Simplified REST Web Services consumption in NetBeans RCP and Java client [...]]]></description>
				<content:encoded><![CDATA[<p>The NetBeans team has released NetBeans IDE 6.9 Milestone 1 Available.</p>
<p>Highlights include:</p>
<p>NetBeans Platform OSGi interoperability<br />
- New Maven project archetypes available<br />
- Easy import of OSGi bundles for use in Ant projects</p>
<p>Java EE<br />
- Support for Contexts and Dependency Injection<br />
- Simplified REST Web Services consumption in NetBeans RCP and Java client applications</p>
<p>Java Web Applications<br />
- Initial support for Spring 3 framework<br />
- Automatic import for Java classes and tag libraries in JSP code completion</p>
<p>PHP<br />
- Zend framework support<br />
- Enhanced code formatting options</p>
<p>Ruby<br />
- Gems indexing</p>
<p>C/C++<br />
- Support for Makefiles: Editor, navigator, run targets<br />
- Virtual functions: Multiple hyperlinks, annotations</p>
<p>Java Editor<br />
- Support for annotation processors<br />
- Over 60 new hints added</p>
<p>Web Languages<br />
- CSS refactoring and enhanced code completion</p>
<p><a title="http://bits.netbeans.org/netbeans/6.9/m1/" href="http://bits.netbeans.org/netbeans/6.9/m1/" target="_blank">http://bits.netbeans.org/netbeans/6.9/m1/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/23/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.8 Patches Released</title>
		<link>http://pronetbeans.com/archives/52?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-6-8-patches-released</link>
		<comments>http://pronetbeans.com/archives/52#comments</comments>
		<pubDate>Fri, 05 Feb 2010 18:57:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=52</guid>
		<description><![CDATA[The NetBeans team has just made available a wide set of patches for NetBeans IDE 6.8. The patches address numerous issues in the C/C++, JavaFX, and JSF modules. Fixes are also included for Java web apps, IDE platform, and RCP support. View the entire list of patch fixes at the NetBeans Wiki : http://wiki.netbeans.org/NetBeans6.8PatchesInfo]]></description>
				<content:encoded><![CDATA[<p>The NetBeans team has just made available a wide set of patches for NetBeans IDE 6.8. The patches address numerous issues in the C/C++, JavaFX, and JSF modules. Fixes are also included for Java web apps, IDE platform, and RCP support.</p>
<p>View the entire list of patch fixes at the NetBeans Wiki : <a target=_blank href="http://wiki.netbeans.org/NetBeans6.8PatchesInfo">http://wiki.netbeans.org/NetBeans6.8PatchesInfo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/52/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.8 Milestone 1 Released</title>
		<link>http://pronetbeans.com/archives/55?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-6-8-milestone-1-released</link>
		<comments>http://pronetbeans.com/archives/55#comments</comments>
		<pubDate>Mon, 03 Aug 2009 17:59:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[6.8]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=55</guid>
		<description><![CDATA[NetBeans 6.8 Milestone 1 has been released. You can read the new and noteworthy report here : http://wiki.netbeans.org/NewAndNoteworthyNB68 It includes features like a new embedded browser, Java EE6 basic support, and a variety of other improvements. Download NetBeans 6.8 Milestone 1 here : http://bits.netbeans.org/netbeans/6.8/m1/]]></description>
				<content:encoded><![CDATA[<p>NetBeans 6.8 Milestone 1 has been released. </p>
<p>You can read the new and noteworthy report here : <a target="_blank" href="http://wiki.netbeans.org/NewAndNoteworthyNB68">http://wiki.netbeans.org/NewAndNoteworthyNB68</a></p>
<p>It includes features like a new embedded browser, Java EE6 basic support, and a variety of other improvements.</p>
<p>Download NetBeans 6.8 Milestone 1 here : <a target="_blank" href="http://bits.netbeans.org/netbeans/6.8/m1/">http://bits.netbeans.org/netbeans/6.8/m1/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/55/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans Buzz Via Search Terms</title>
		<link>http://pronetbeans.com/archives/187?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-buzz-via-search-terms</link>
		<comments>http://pronetbeans.com/archives/187#comments</comments>
		<pubDate>Sat, 04 Jul 2009 22:30:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=187</guid>
		<description><![CDATA[Recently I was looking through the admin tools for my website and blog, http://www.pronetbeans.com. One area I occasionally glance at, but usually ignore, is the search terms section. When users enter the site from a Google or Yahoo or Dogpile or **insert your engine here** search, the search terms typically get logged. I was curious [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I was looking through the admin tools for my website and blog, <a href="http://www.pronetbeans.com">http://www.pronetbeans.com</a>. One area I occasionally glance at, but usually ignore, is the search terms section. When users enter the site from a Google or Yahoo or Dogpile or **insert your engine here** search, the search terms typically get logged. </p>
<p>I was curious what the buzz around NetBeans this year since I&#8217;m currently at JavaOne so I thought I&#8217;d lookup and mention some of the most searched for (or interesting) terms that people have searched for and hit my site with between January 01, 2009 and today, June 4, 2009.</p>
<p><span id="more-187"></span></p>
<table border="1">
<thead>
<tr>
<th>Search Term</th>
<th># Hits</th>
</tr>
</thead>
<tbody>
<tr>
<td>j2ee.platform.classpath</td>
<td>363</td>
</tr>
<tr>
<td>the java ee server classpath is not correct</td>
<td>286</td>
</tr>
<tr>
<td>100 netbeans ide tips and tricks</td>
<td>206</td>
</tr>
<tr>
<td>netbeans create javadoc</td>
<td>166</td>
</tr>
<tr>
<td>netbeans code coverage</td>
<td>145</td>
</tr>
<tr>
<td>netbeans shared libraries</td>
<td>99</td>
</tr>
<tr>
<td>javadoc analyzer</td>
<td>47</td>
</tr>
<tr>
<td>netbeans junit plugin</td>
<td>38</td>
</tr>
<tr>
<td>netbeans source code formatter</td>
<td>33</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/187/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Integration in the Cloud (with Hudson)</title>
		<link>http://pronetbeans.com/archives/182?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=continuous-integration-in-the-cloud-with-hudson</link>
		<comments>http://pronetbeans.com/archives/182#comments</comments>
		<pubDate>Wed, 03 Jun 2009 22:29:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[hudson]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=182</guid>
		<description><![CDATA[Sitting in a technical session here at JavaOne, titled &#8216;Continuous Integration in the Cloud&#8217; with Kohsuke Kawaguchi and Jesse Glick. The session focused on a using Hudson overview, using HUdson in a distributed master/salve manner, and some of the newer use cases (such as with clouds and Kenai). One of the cool items discussed was [...]]]></description>
				<content:encoded><![CDATA[<p>Sitting in a technical session here at JavaOne, titled &#8216;Continuous Integration in the Cloud&#8217; with Kohsuke Kawaguchi and Jesse Glick. </p>
<p><a href="http://pronetbeans.com/?attachment_id=271" rel="attachment wp-att-271"><img src="http://pronetbeans.com/wp-content/uploads/2009/06/hudson_01.jpg" alt="hudson_01" title="hudson_01" width="600" height="450" class="alignnone size-full wp-image-271" /></a></p>
<p>The session focused on a using Hudson overview, using HUdson in a distributed master/salve manner, and some of the newer use cases (such as with clouds and Kenai).</p>
<p>One of the cool items discussed was the Hudson <a target="_blank" href="http://aws.amazon.com/ec2/">Amazon EC2</a> plugin which allows you to automatically provision slaves on EC2 on demand. I haven&#8217;t heard it mentioned (yet), but I would imagine in the near future you will be able to do the same in Sun Cloud.</p>
<p>I didn&#8217;t hear much about Hudson and NetBeans or Hudson and Kenai. Maybe more later at their BOF.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/182/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedded Browser Plans for NetBeans 6.8</title>
		<link>http://pronetbeans.com/archives/179?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=embedded-browser-plans-for-netbeans-6-8</link>
		<comments>http://pronetbeans.com/archives/179#comments</comments>
		<pubDate>Wed, 03 Jun 2009 22:27:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=179</guid>
		<description><![CDATA[In NetBeans 6.8, it looks like there are tentative plans to implement an embedded web browser or web preview directly inside NetBeans. The concept is to minimize the amount of time the user spends switching between the IDE and external web browser. Hopefully, it will work more like a WYSIWYG preview feature (think Dreamweaver style) [...]]]></description>
				<content:encoded><![CDATA[<p>In NetBeans 6.8, it looks like there are tentative plans to implement an embedded web browser or web preview directly inside NetBeans. </p>
<p>The concept is to minimize the amount of time the user spends switching between the IDE and external web browser. Hopefully, it will work more like a WYSIWYG preview feature (think Dreamweaver style) and not a thick or heavy web browser. I know I&#8217;ve hoped for years to have a web preview option directly in NB. Hopefully this addresses some of that need.</p>
<p><span id="more-179"></span></p>
<p>You can follow the plans at the NetBeans Wiki at this location <a href="http://wiki.netbeans.org/EmbeddedBrowserPlan68" target="_blank">http://wiki.netbeans.org/EmbeddedBrowserPlan68</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/179/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java EE 6 Support in NetBeans.</title>
		<link>http://pronetbeans.com/archives/191?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=java-ee-6-support-in-netbeans</link>
		<comments>http://pronetbeans.com/archives/191#comments</comments>
		<pubDate>Tue, 02 Jun 2009 22:31:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=191</guid>
		<description><![CDATA[I always browse the &#8220;recent changes&#8221; section of the NetBeans wiki. This lets me see what&#8217;s been going on in the last few days or weeks if I haven&#8217;t stayed up to date. Recently I saw this page, Java EE6 Integration, appear in the Wiki as recently modified. Looks like the next version of NetBeans [...]]]></description>
				<content:encoded><![CDATA[<p>I always browse the &#8220;recent changes&#8221; section of the NetBeans wiki. This lets me see what&#8217;s been going on in the last few days or weeks if I haven&#8217;t stayed up to date. Recently I saw this page, <a href="http://wiki.netbeans.org/JEE6Integration" target="_blank">Java EE6 Integration</a>, appear in the Wiki as recently modified. Looks like the next version of NetBeans will start to provide Java EE 6 support. Maybe this has been blogged to death already, but it&#8217;s the first I&#8217;ve seen of it. (maybe I&#8217;ve been under a rock). Very cool. I&#8217;m especially looking forward to Servlet 3.0 support.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/191/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.7 &#8211; New Debugger Features</title>
		<link>http://pronetbeans.com/archives/173?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-6-7-new-debugger-features</link>
		<comments>http://pronetbeans.com/archives/173#comments</comments>
		<pubDate>Sun, 01 Mar 2009 23:23:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[6.7]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=173</guid>
		<description><![CDATA[I recently started testing some of the latest daily builds, especially since NetBeans 6.7 Milestone 2 release is so close (should be next week). One of the new features available is the ability to configure some debugger settings in the Options window. Users can now configure formatting for variables that appear in the Local Variables [...]]]></description>
				<content:encoded><![CDATA[<p>I recently started testing some of the latest daily builds, especially since NetBeans 6.7 Milestone 2 release is so close (should be next week). One of the new features available is the ability to configure some debugger settings in the Options window. Users can now configure formatting for variables that appear in the Local Variables and Watches window. They can also specify a series of filters used when stepping through code being debugged&#8230;</p>
<p><span id="more-173"></span></p>
<p>In the Options window, select Miscellaneous. A new Java Debugger tab should be listed. Select it and you should see a several settings you can select. Click the Step Filters radio button. You should see a set of options, as pictured below.</p>
<p><img src="http://pronetbeans.com/wp-content/uploads/2009/02/nb_debugger_6-7.jpg" alt="nb_debugger_6-7.jpg" /></p>
<p>The step filters let you specify code blocks to automatically skip while you are stepping through code. You can select a checkbox so that all constructors are skipped, which is a really nice feature for me. There usually isn&#8217;t any code of consequence in a constructor and it is annoying to step through when you are in a hurry (and not remembering you have a step over keyboard shortcut).  You can also use the &#8216;filter classes matching&#8217; section to add packages and specific classes to skip as well.</p>
<p>Currently several of the buttons in the Variable Formatters section didn&#8217;t seem to work at all, so it seems this feature is not completely ready. Hopefully when Milestone 2 is released next week everything will work as expected. In general I&#8217;m glad to see these settings added to the NetBeans debugger.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/173/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Blog &#8211; The Second Coming of NetBeans</title>
		<link>http://pronetbeans.com/archives/176?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=interesting-blog-the-second-coming-of-netbeans</link>
		<comments>http://pronetbeans.com/archives/176#comments</comments>
		<pubDate>Tue, 24 Feb 2009 23:25:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=176</guid>
		<description><![CDATA[A link to a great post just came through the NetBeans Dream Team email list&#8230; a blog post by a NetBeans user, Travis Walters, regarding his experiences between NetBeans and Eclipse over the last year. Kudos Travis. Read about the second coming of NetBeans. &#8230;Or you can copy and paste this URL in the link [...]]]></description>
				<content:encoded><![CDATA[<p>A link to a great post just came through the NetBeans Dream Team email list&#8230; a blog post by a NetBeans user, Travis Walters, regarding his experiences between NetBeans and Eclipse over the last year.</p>
<p>Kudos Travis.</p>
<p><a href="http://traviswalt3rs.blogspot.com/2009/02/second-coming-of-netbeans.html" target="_blank">Read about the second coming of NetBeans</a>.</p>
<p>&#8230;Or you can copy and paste this URL in the link above does not work :</p>
<p><a href="http://traviswalt3rs.blogspot.com/2009/02/second-coming-of-netbeans.html">http://traviswalt3rs.blogspot.com/2009/02/second-coming-of-netbeans.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/176/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 7 Release Changed to 6.7?</title>
		<link>http://pronetbeans.com/archives/169?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-7-release-changed-to-6-7</link>
		<comments>http://pronetbeans.com/archives/169#comments</comments>
		<pubDate>Wed, 18 Feb 2009 23:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[6.7]]></category>
		<category><![CDATA[7.0]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=169</guid>
		<description><![CDATA[It seems based on some of the latest activity on the NetBeans Wiki, that the NetBeans team is lowering the version number for the next major release of the NetBeans IDE&#8230; I&#8217;m a frequent visitor to the New and Noteworthy page during the Milestone release process&#8230; the NB 7 Milestone 2 New &#38; Noteworthy page [...]]]></description>
				<content:encoded><![CDATA[<p>It seems based on some of the latest activity on the NetBeans Wiki, that the NetBeans team is lowering the version number for the next major release of the NetBeans IDE&#8230;</p>
<p><span id="more-169"></span></p>
<p>I&#8217;m a frequent visitor to the New and Noteworthy page during the Milestone release process&#8230; the <a target="_blank" href="http://wiki.netbeans.org/NewAndNoteworthyMilestone2NB70">NB 7 Milestone 2 New &amp; Noteworthy page</a> now reads as : &#8216;This page has moved to NewAndNoteworthyMilestone2NB67&#8242;.</p>
<p>The new page is titled &#8220;<a target="_blank" href="http://wiki.netbeans.org/NewAndNoteworthyMilestone2NB67">New and Noteworthy NetBeans IDE 6.7 M2</a> &#8220;.  Based on this evidence it seems apparent that NetBeans IDE 6.7 will be the next major release probably due out around JavaOne.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/169/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Profile Me Now&#8217; Feature in NetBeans 7 Milestone 2</title>
		<link>http://pronetbeans.com/archives/166?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=profile-me-now-feature-in-netbeans-7-milestone-2</link>
		<comments>http://pronetbeans.com/archives/166#comments</comments>
		<pubDate>Tue, 10 Feb 2009 23:21:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[profiler]]></category>

		<guid isPermaLink="false">http://pronetbeans.com/?p=166</guid>
		<description><![CDATA[Based on the New and Noteworthy page for NetBeans 7 Milestone 2, it looks like a new feature called &#8216;Profile Me Now&#8217; will be added. This seems to be an attempt to improve the self diagnostic capabilities of the IDE itself&#8230; I&#8217;v seen more than a few bug reports where someone complains about performance in [...]]]></description>
				<content:encoded><![CDATA[<p>Based on the New and Noteworthy page for NetBeans 7 Milestone 2, it looks like a new feature called &#8216;Profile Me Now&#8217; will be added. This seems to be an attempt to improve the self diagnostic capabilities of the IDE itself&#8230;</p>
<p><span id="more-166"></span></p>
<p>I&#8217;v seen more than a few bug reports where someone complains about performance in their project, but cannot send the NB team their code due to proprietary rights issues, intellectual property, export control, etc.</p>
<p>With this feature users can activate the diagnostic tool, perform some action or actions, and then deactivate the diagnostic tool. This will generate a standard NetBeans Profiler snapshot which can then be submitted to the NB team for analysis.</p>
<p>Read about the new feature at the <a target="_blank" href="http://wiki.netbeans.org/NewAndNoteworthyMilestone2NB70#section-NewAndNoteworthyMilestone2NB70-ProfileMeNow">New and Noteworthy page for NetBeans 7 Milestone 2</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pronetbeans.com/archives/166/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
