<?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>FettesPS &#187; Java</title>
	<atom:link href="http://www.fettesps.com/category/programming/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fettesps.com</link>
	<description>Fettes Programming Solutions</description>
	<lastBuildDate>Fri, 30 Jul 2010 19:20:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing Eclipse&#8217;s Java Dependancy Errors</title>
		<link>http://www.fettesps.com/fixing-eclipses-java-dependancy-errors/</link>
		<comments>http://www.fettesps.com/fixing-eclipses-java-dependancy-errors/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 12:48:45 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[jre]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=625</guid>
		<description><![CDATA[While setting up Eclipse on my development station in order to compare it to NetBeans I encountered the following error:
A Java Runtime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following locations:
c:\Program Files\Eclipse\jre\bin\javaw.exe 'javaw.exe' in your current path
I have [...]]]></description>
			<content:encoded><![CDATA[<p>While setting up Eclipse on my development station in order to compare it to NetBeans I encountered the following error:</p>
<pre class="brush: plain;">A Java Runtime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following locations:
c:\Program Files\Eclipse\jre\bin\javaw.exe 'javaw.exe' in your current path</pre>
<p>I have Java installed, and it is working properly.  It was a big pain to get working properly the first time with NetBeans so I was worried that if I tweaked it to work with Eclipse I may end up with it not working in either.  I took a peek into many of the config files for Eclipse and didn&#8217;t see an option to set the path for javaw.exe, so I made use of my Google-Fu skills and found the following solution:</p>
<ul>
<li>Right Click Eclipse.exe and select Create Shortcut</li>
<li>Right Click the new shortcut and select Properties</li>
<li>At the end of the target path, add the parameter <i>-vm</i> and then the path to your javaw.exe<br />ie: &#8220;C:\Program Files\eclipse\eclipse.exe&#8221; -vm C:\Java\jdk1.6.0_13\bin</li>
<li>Hit Ok, then run Eclipse from your new shortcut</li>
</ul>
<p>Problem solved!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/fixing-eclipses-java-dependancy-errors/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Disable SVN in NetBeans</title>
		<link>http://www.fettesps.com/disable-svn-in-netbeans/</link>
		<comments>http://www.fettesps.com/disable-svn-in-netbeans/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 15:23:10 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[cvs]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=607</guid>
		<description><![CDATA[For the last couple of weeks I&#8217;ve been doing some Java development using NetBeans and every couple of days my checked out copy of the project dies on me.  I was getting very frustrated because each time it happened I had to check out an older revision to a new directory, then export the [...]]]></description>
			<content:encoded><![CDATA[<p>For the last couple of weeks I&#8217;ve been doing some Java development using NetBeans and every couple of days my checked out copy of the project dies on me.  I was getting very frustrated because each time it happened I had to check out an older revision to a new directory, then export the corrupted one into and from there I could check it in.  This was not only time consuming but a very messy solution which had the potential mess up my repository.  Yet after going through all this work I would again be presented with the following error:</p>
<blockquote><p>&#8220;This client is too old to work with the working copy &#8220;C:\path\to\repository.&#8221; You need to get a newer Subversion client, or downgrade this working copy.  See http://subversion.tigris.org/faq.html#working-copy-format-change for details.&#8221;</p></blockquote>
<p></p>
<p>This error was somewhat misleading, as the site it provided didn&#8217;t offer me any insight as to why it was happening.  I had the newest version of TortoiseSVN and the error wasn&#8217;t happening with any of my Visual Basic or PHP projects, just the Java project. Eventually it dawned on me what was causing this.  NetBeans IDE has built in support for Subversion which uses the CollabNet Subversion client.  When I was working within the NetBeans IDE the CollabNet client was working behind the scenes and changing files within the .svn folder on my system.  When the time came for me to check in my changes through TortoiseSVN I would get the not so helpful error message.</p>
<p>After a quick Google search I found the solution on the <a href="http://forums.netbeans.org/viewtopic.php?p=49144" target="_new" rel="nofollow">NetBeans Forums</a>. In the NetBeans IDE go to <b>Tools->Plugins</b> then under the <b>Installed</b> tab check <b>Subversion</b> and hit <b>Uninstall</b>.  The plugin will be removed and you will be prompted to restart the IDE.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/disable-svn-in-netbeans/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
