<?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>Brian's Stuff</title>
	<atom:link href="http://blog.btmatthews.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.btmatthews.com</link>
	<description>Stuff I don't want to forget (again!)</description>
	<lastBuildDate>Fri, 02 Jul 2010 16:54:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>i &gt;= 1 &amp;&amp; i </title>
		<link>http://blog.btmatthews.com/?p=255</link>
		<comments>http://blog.btmatthews.com/?p=255#comments</comments>
		<pubDate>Fri, 02 Jul 2010 16:52:47 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=255</guid>
		<description><![CDATA[Almost 90 years after it happened, I&#8217;ve been forced to recognise partition for the first time in my life. And the irony is that it is the Irish government that is forcing me to do it. I&#8217;ve had to add some validation logic to a drop down list for an e-government web application I&#8217;m working [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=255</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Sun Java 6 on Ubuntu 10.04 (Lucid Lynx)</title>
		<link>http://blog.btmatthews.com/?p=250</link>
		<comments>http://blog.btmatthews.com/?p=250#comments</comments>
		<pubDate>Thu, 01 Jul 2010 02:22:56 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[ubuntu java]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=250</guid>
		<description><![CDATA[I came across this post that almost completely explains how to get Sun Java SE 6 installed on Ubuntu 10.04 (Lucid Lynx). sudo apt-get install python-software-properties sudo add-apt-repository &#34;deb http://archive.canonical.com/ lucid partner&#34; sudo apt-get update sudo apt-get install sun-java6-jdk The problem I had with the original post was that add-apt-repository was not available until I [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=250</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting JSP EL to work on Google App Engine</title>
		<link>http://blog.btmatthews.com/?p=241</link>
		<comments>http://blog.btmatthews.com/?p=241#comments</comments>
		<pubDate>Mon, 04 Jan 2010 21:37:08 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Workaround]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=241</guid>
		<description><![CDATA[I am developing an Spring 3.0 based web application that I intend to deploy to Google App Engine. But I&#8217;ve been banging my head against a brick wall for a day now trying to figure out why my ${xxx} expressions are not evaluating correctly. The source of the problem seems to be a bug with [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=241</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to install Java 6 JDK on Ubuntu</title>
		<link>http://blog.btmatthews.com/?p=236</link>
		<comments>http://blog.btmatthews.com/?p=236#comments</comments>
		<pubDate>Mon, 07 Sep 2009 19:02:41 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=236</guid>
		<description><![CDATA[It couldn&#8217;t be easier. Just execute the following commands in your favourite shell: sudo apt-get install sun-java6-jdk sun-java6-plugin update-java-alternatives -s java-6-sun And add the following /usr/lib/jvm/java-6-sun to the top of the list in your /etc/jvm file.]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=236</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Déjà Vu &#8211; Using the Maven Assembly Plugin correctly</title>
		<link>http://blog.btmatthews.com/?p=232</link>
		<comments>http://blog.btmatthews.com/?p=232#comments</comments>
		<pubDate>Thu, 04 Jun 2009 19:06:59 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[maven 2]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=232</guid>
		<description><![CDATA[If you want to create an archive (.zip, .tar.gz, etc.) file as part of a Maven 2 build you need to use the Assembly Plug-in. Furthermore, if you want to install it into your local repository or deploy it to a remote repository you will need the assistance of the Builder Helper Plug-in. But if [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=232</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using self-signed certificates to protect an Archiva repository</title>
		<link>http://blog.btmatthews.com/?p=229</link>
		<comments>http://blog.btmatthews.com/?p=229#comments</comments>
		<pubDate>Wed, 03 Jun 2009 01:19:29 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Release Engineering]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[archiva]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[keytool]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[maven 2]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=229</guid>
		<description><![CDATA[I have deployed a Maven repository using Archiva and protect it using user name and password authentication. I don&#8217;t really have much intellectual property worth protecting (yet!) but I decided that I really should be protecting the transport layer using SSL anyway. Being cheap I also decided to use a self signed certificate so I [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=229</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building JBoss Service Archives (SARs) with Maven 2</title>
		<link>http://blog.btmatthews.com/?p=218</link>
		<comments>http://blog.btmatthews.com/?p=218#comments</comments>
		<pubDate>Fri, 29 May 2009 00:58:59 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=218</guid>
		<description><![CDATA[I discovered the following Maven 2 plugins capabable of building JBoss Service ARchives (SARs). JBoss Maven Plugin Maven SAR Plugin The JBoss Maven Plugin is the better of the two because it will bundle the project dependencies into the generated SAR along with the compiled classes and resources. Whereas the Maven SAR plugin only bundles [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=218</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Oracle Database 10g Express Edition on Ubuntu</title>
		<link>http://blog.btmatthews.com/?p=187</link>
		<comments>http://blog.btmatthews.com/?p=187#comments</comments>
		<pubDate>Tue, 26 May 2009 23:50:25 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=187</guid>
		<description><![CDATA[I needed to install Oracle Database 10g Express Edition (XE) on a VMware Workstation virtual machine (VM) running Ubuntu 8.04 as the guest operating system today. It wasn&#8217;t as straightforward as I would have expected compared to my previous experience of installing XE on Windows-based platforms. My first attempt to install XE failed miserably because [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=187</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disabling system beep in VMware</title>
		<link>http://blog.btmatthews.com/?p=185</link>
		<comments>http://blog.btmatthews.com/?p=185#comments</comments>
		<pubDate>Tue, 26 May 2009 19:09:54 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[system beep]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=185</guid>
		<description><![CDATA[I&#8217;ve recently been plaged by an obnoxiously loud system beep from VMware Workstation. I hunted around the Internet and discovered that adding the following to the .vmx configuration file for the virtual machine will silence it forever. mks.noBeep = &#34;TRUE&#34; Source: http://blog.pauked.com/?p=391]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=185</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying Archiva to JBoss 4.2</title>
		<link>http://blog.btmatthews.com/?p=154</link>
		<comments>http://blog.btmatthews.com/?p=154#comments</comments>
		<pubDate>Fri, 20 Feb 2009 02:52:10 +0000</pubDate>
		<dc:creator>bmatthews68</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[jboss archiva]]></category>

		<guid isPermaLink="false">http://blog.btmatthews.com/?p=154</guid>
		<description><![CDATA[After jumping through a few hoops I managed to get Archvia 1.1.3 successfully deployed to JBoss 4.2.3. Set the appserver.base and appserver.home properties by adding the following lines to $JBOSS_HOME/bin/run.sh and restart JBoss. JAVA_OPTS="-Dappserver.home=$JBOSS_HOME -Dappserver.base=$JBOSS_HOME $JAVA_OPTS" Now create data source deployment descriptors for the archiva and users databases and copy them to $JBOSS_HOME/server/default/deploy. I am [...]]]></description>
		<wfw:commentRss>http://blog.btmatthews.com/?feed=rss2&amp;p=154</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
