<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A Public Scratchpad &#187; Maven</title>
	<atom:link href="http://daniel.gredler.net/category/maven/feed/" rel="self" type="application/rss+xml" />
	<link>http://daniel.gredler.net</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2012 01:02:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='daniel.gredler.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A Public Scratchpad &#187; Maven</title>
		<link>http://daniel.gredler.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://daniel.gredler.net/osd.xml" title="A Public Scratchpad" />
	<atom:link rel='hub' href='http://daniel.gredler.net/?pushpress=hub'/>
		<item>
		<title>Gradle: Keeping Libraries Up To Date</title>
		<link>http://daniel.gredler.net/2011/08/08/gradle-keeping-libraries-up-to-date/</link>
		<comments>http://daniel.gredler.net/2011/08/08/gradle-keeping-libraries-up-to-date/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 00:03:38 +0000</pubDate>
		<dc:creator>Daniel Gredler</dc:creator>
				<category><![CDATA[Gradle]]></category>
		<category><![CDATA[Groovy]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://daniel.gredler.net/?p=315</guid>
		<description><![CDATA[After a successful proof of concept earlier this year, we&#8217;ve started using Gradle (instead of Maven) for new projects at work. One of the first things you might notice about Gradle is that (a) it&#8217;s new enough that there isn&#8217;t a plugin for every random requirement out there, and (b) it&#8217;s flexible enough that the missing plugins [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=315&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After a successful proof of concept earlier this year, we&#8217;ve started using Gradle (instead of Maven) for new projects at work. One of the first things you might notice about Gradle is that (a) it&#8217;s new enough that there isn&#8217;t a plugin for every <a href="http://maven-im-plugin.sourceforge.net/">random requirement</a> out there, and (b) it&#8217;s flexible enough that the missing plugins aren&#8217;t usually a problem &#8212; you just implement the functionality yourself.</p>
<p>Here&#8217;s a quick task that will let you know if your dependencies need to be updated, a la <a href="http://mojo.codehaus.org/versions-maven-plugin/display-dependency-updates-mojo.html">mvn versions:display-dependency-updates</a>. It&#8217;s actually a bit longer than most Gradle snippets, so I suspect there&#8217;s a way to express it more succinctly. The irony, of course, is that it relies on the Maven central repo to determine whether or not any of your dependencies are out of date.</p>
<p><pre class="brush: groovy;">// Find any 3rd party libraries which have released new versions
// to the central Maven repo since we last upgraded.
task checkLibVersions &lt;&lt; {
  def checked = [:]
  allprojects {
    configurations.each { configuration -&gt;
      configuration.allDependencies.each { dependency -&gt;
        def version = dependency.version
        if(!version.contains('SNAPSHOT') &amp;&amp; !checked[dependency]) {
          def group = dependency.group
          def path = group.replace('.', '/')
          def name = dependency.name
          def url = &quot;http://repo1.maven.org/maven2/$path/$name/maven-metadata.xml&quot;
          try {
            def metadata = new XmlSlurper().parseText(url.toURL().text)
            def versions = metadata.versioning.versions.version.collect { it.text() }
            versions.removeAll { it.toLowerCase().contains('alpha') }
            versions.removeAll { it.toLowerCase().contains('beta') }
            versions.removeAll { it.toLowerCase().contains('rc') }
            def newest = versions.max()
            if(version != newest) {
              println &quot;$group:$name $version -&gt; $newest&quot;
            }
          } catch(FileNotFoundException e) {
            logger.debug &quot;Unable to download $url: $e.message&quot;
          } catch(org.xml.sax.SAXParseException e) {
            logger.debug &quot;Unable to parse $url: $e.message&quot;
          }
          checked[dependency] = true
        }
      }
    }
  }
}</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gredler.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gredler.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gredler.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gredler.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gredler.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gredler.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gredler.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gredler.wordpress.com/315/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=315&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel.gredler.net/2011/08/08/gradle-keeping-libraries-up-to-date/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71895d31422ff2da109a665d5f6d256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gredler</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven + log4j 1.2.15 = BOOM!</title>
		<link>http://daniel.gredler.net/2008/09/12/maven-log4j-1215-boom/</link>
		<comments>http://daniel.gredler.net/2008/09/12/maven-log4j-1215-boom/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 18:05:16 +0000</pubDate>
		<dc:creator>Daniel Gredler</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://gredler.wordpress.com/?p=117</guid>
		<description><![CDATA[Don&#8217;t try to use log4j 1.2.15 with Maven 2 &#8212; they didn&#8217;t mark their optional dependencies optional, forcing you to download and locally install a bunch of JavaMail, JMX and JMS JARs. More info here. Bug report here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=117&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t try to use log4j 1.2.15 with Maven 2 &#8212; they didn&#8217;t mark their optional dependencies optional, forcing you to download and locally install a bunch of JavaMail, JMX and JMS JARs. More info <a href="http://yoavs.blogspot.com/2008/05/caution-log4j-1215-brings-in-bunch-of.html">here</a>. Bug report <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=43304">here</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gredler.wordpress.com/117/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gredler.wordpress.com/117/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gredler.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gredler.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gredler.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gredler.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gredler.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gredler.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gredler.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gredler.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=117&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel.gredler.net/2008/09/12/maven-log4j-1215-boom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71895d31422ff2da109a665d5f6d256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gredler</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven Enhancements to Keep an Eye On</title>
		<link>http://daniel.gredler.net/2008/08/05/maven-enhancements-to-keep-an-eye-on/</link>
		<comments>http://daniel.gredler.net/2008/08/05/maven-enhancements-to-keep-an-eye-on/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 18:17:23 +0000</pubDate>
		<dc:creator>Daniel Gredler</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://gredler.wordpress.com/?p=80</guid>
		<description><![CDATA[MNG-3397: More concise POM syntax (more info here). MNG-3379: Concurrent artifact resolution (more info here). MNG-2315: Easy mass transitive dependency exclusions. MNG-1977: Global transitive dependency exclusions. Have I missed any?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=80&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jira.codehaus.org/browse/MNG-3397">MNG-3397</a>: More concise POM syntax (more info <a href="http://www.oreillynet.com/onjava/blog/2008/02/changing_the_maven_pom.html">here</a>).<br />
<a href="http://jira.codehaus.org/browse/MNG-3379">MNG-3379</a>: Concurrent artifact resolution (more info <a href="http://www.jroller.com/mrdon/entry/making_maven_2_not_suck">here</a>).<br />
<a href="http://jira.codehaus.org/browse/MNG-2315">MNG-2315</a>: Easy mass transitive dependency exclusions.<br />
<a href="http://jira.codehaus.org/browse/MNG-1977">MNG-1977</a>: Global transitive dependency exclusions.</p>
<p>Have I missed any?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gredler.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gredler.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gredler.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gredler.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gredler.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gredler.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gredler.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gredler.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gredler.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gredler.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=80&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel.gredler.net/2008/08/05/maven-enhancements-to-keep-an-eye-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71895d31422ff2da109a665d5f6d256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gredler</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven 2.0.7 Released!</title>
		<link>http://daniel.gredler.net/2007/06/25/maven-207-released/</link>
		<comments>http://daniel.gredler.net/2007/06/25/maven-207-released/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 16:56:49 +0000</pubDate>
		<dc:creator>Daniel Gredler</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://daniel.gredler.net/2007/06/25/maven-207-released/</guid>
		<description><![CDATA[Things seem to be speeding up again in Maven land, ever since a bunch of the core Maven developers left Mergere to start Sonatype. It seems likely that development at Mergere was focused on value-add propositions like Maestro (based on Maven), while Sonatype focuses on Maven itself, making money off of training and partnerships. Consider [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=25&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Things seem to be speeding up again in Maven land, ever since a bunch of the core Maven developers left <a href="http://www.mergere.com/">Mergere</a> to start <a href="http://www.sonatype.com/">Sonatype</a>. It seems likely that development at Mergere was focused on value-add propositions like Maestro (based on Maven), while Sonatype focuses on Maven itself, making money off of training and partnerships. Consider the following timeline:</p>
<ul>
<li>Maven 2.0.2 (January 2006)</li>
<li>Maven 2.0.3 (March 2006)</li>
<li>Maven 2.0.4 (April 2006)</li>
<li>&#8230;zzzz&#8230;zz&#8230;zzzzzz&#8230;</li>
<li>Maven 2.0.5 (February 2007)</li>
<li>Maven 2.0.6 (April 2007)</li>
<li>Maven 2.0.7 (June 2007)</li>
<li>Maven 2.0.8 (August 2007 <em>[tentative]</em>)</li>
</ul>
<p>As you can see, nothing much happened for about a year there.</p>
<p>In his <a href="http://www.theserverside.com/news/thread.tss?thread_id=45903">announcement</a> on The Server Side, Jason mentions the team&#8217;s intention to release monthly maintenance releases from here on out. I&#8217;ve also noticed increased activity on a couple of the issues I&#8217;m watching in Maven&#8217;s issue tracker, including features slated for the 2.1 release. I really like Maven 2, and I&#8217;m glad to see these signs of resurgent activity.</p>
<p>Congratulations, guys!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gredler.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gredler.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gredler.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gredler.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gredler.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gredler.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gredler.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gredler.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gredler.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gredler.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=25&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel.gredler.net/2007/06/25/maven-207-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71895d31422ff2da109a665d5f6d256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gredler</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven 1 Frustrations</title>
		<link>http://daniel.gredler.net/2007/04/08/maven-1-frustrations/</link>
		<comments>http://daniel.gredler.net/2007/04/08/maven-1-frustrations/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 03:31:51 +0000</pubDate>
		<dc:creator>Daniel Gredler</dc:creator>
				<category><![CDATA[HtmlUnit]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://gredler.wordpress.com/2007/04/08/maven-1-frustrations/</guid>
		<description><![CDATA[I just spent the past hour attempting to install Maven 1.0.2 in order to get some HtmlUnit work done. Lesson the first: don&#8217;t point your JAVA_HOME environment variable to a path which includes spaces. This was a good rule of thumb back in 1997, but come on! Ten years later, and we&#8217;re still dealing with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=13&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just spent the past hour attempting to install Maven 1.0.2 in order to get some <a href="http://htmlunit.sourceforge.net/">HtmlUnit</a> work done.</p>
<p>Lesson the first: don&#8217;t point your JAVA_HOME environment variable to a path which includes spaces. This was a good rule of thumb back in 1997, but come on! Ten years later, and we&#8217;re still dealing with these issues? The Maven batch file is full of double-quoted variables and values, but apparently it&#8217;s just an effort to instill a false sense of security in unwary developers.</p>
<p>Lesson the second: do <em>not</em>, under any circumstances, add a trailing slash to your MAVEN_HOME environment variable. Doing so (ie, using &#8220;C:\java\maven-1.0.2\&#8221; instead of &#8220;C:\java\maven-1.0.2&#8243;) will cause Maven to throw the Java usage message at you, instead of doing something useful like, say, compiling your project.</p>
<p>It&#8217;s too bad that <a href="http://www.mergere.com/">Mergere</a> seems to be having <a href="http://www.ejlife.net/blogs/john/2007/03/02/1172852378113.html">some</a> <a href="http://blogs.maven.org/jvanzyl/2007/03/04/1173023279967.html">trouble</a>. Both versions of Maven could really use the polish that comes with a professional <em>[read: for money]</em> operation a la JBoss&#8230;</p>
<p><strong>UPDATE:</strong> <a href="http://blogs.maven.org/jvanzyl/2007/04/18/1176905394766.html">Enter Sonatype!</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gredler.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gredler.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gredler.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gredler.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gredler.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gredler.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gredler.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gredler.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gredler.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gredler.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel.gredler.net&amp;blog=887150&amp;post=13&amp;subd=gredler&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel.gredler.net/2007/04/08/maven-1-frustrations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71895d31422ff2da109a665d5f6d256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gredler</media:title>
		</media:content>
	</item>
	</channel>
</rss>
