<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: M2Eclipse Plugin is not for me</title>
	<atom:link href="http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/feed/" rel="self" type="application/rss+xml" />
	<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/</link>
	<description>Robert's Rambling Ruminations Regarding Reality</description>
	<lastBuildDate>Mon, 19 Jul 2010 23:02:46 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Robert</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-1027</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 25 Feb 2010 22:14:35 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-1027</guid>
		<description>Like this:
&lt;pre&gt;
&lt;plugin&gt;
    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
    &lt;artifactId&gt;maven-eclipse-plugin&lt;/artifactId&gt;
    &lt;version&gt;2.5.1&lt;/version&gt;
    &lt;configuration&gt;
        &lt;downloadSources&gt;true&lt;/downloadSources&gt;&lt;!-- Having source code references is a &quot;Good Thing&quot; (tm) --&gt;
        &lt;downloadJavadocs&gt;true&lt;/downloadJavadocs&gt;&lt;!-- Having source code references is a &quot;Good Thing&quot; (tm) --&gt;
        &lt;buildOutputDirectory&gt;${eclipse.classes.dir}&lt;/buildOutputDirectory&gt;&lt;!-- Not having to re-compile everything inside Eclipse just because you&#039;ve done a Maven clean is also a &quot;Good Thing&quot; (tm), but not everyone likes it, so it&#039;s configurable (and off by default) --&gt;
        &lt;useProjectReferences&gt;true&lt;/useProjectReferences&gt;
    &lt;/configuration&gt;
&lt;/plugin&gt;
&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Like this:</p>
<pre>
&lt;plugin&gt;
    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
    &lt;artifactId&gt;maven-eclipse-plugin&lt;/artifactId&gt;
    &lt;version&gt;2.5.1&lt;/version&gt;
    &lt;configuration&gt;
        &lt;downloadSources&gt;true&lt;/downloadSources&gt;&lt;!-- Having source code references is a "Good Thing" (tm) --&gt;
        &lt;downloadJavadocs&gt;true&lt;/downloadJavadocs&gt;&lt;!-- Having source code references is a "Good Thing" (tm) --&gt;
        &lt;buildOutputDirectory&gt;${eclipse.classes.dir}&lt;/buildOutputDirectory&gt;&lt;!-- Not having to re-compile everything inside Eclipse just because you've done a Maven clean is also a "Good Thing" (tm), but not everyone likes it, so it's configurable (and off by default) --&gt;
        &lt;useProjectReferences&gt;true&lt;/useProjectReferences&gt;
    &lt;/configuration&gt;
&lt;/plugin&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: EDH</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-1017</link>
		<dc:creator>EDH</dc:creator>
		<pubDate>Thu, 11 Feb 2010 17:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-1017</guid>
		<description>Are you sure about &quot;Of course you can change the output-folder by modifying your pom.xml to have separate output-folders for your class-files&quot;.
My experience is that a lot of Maven plugin cannot be configured to produce their output in a particular non-default location. 80 of your output will be produced in a separate folder, but 20 will still be produced in the same target folder, resulting in an even bigger nightmare.
Or am I wrong ? I hope so.</description>
		<content:encoded><![CDATA[<p>Are you sure about &#8220;Of course you can change the output-folder by modifying your pom.xml to have separate output-folders for your class-files&#8221;.<br />
My experience is that a lot of Maven plugin cannot be configured to produce their output in a particular non-default location. 80 of your output will be produced in a separate folder, but 20 will still be produced in the same target folder, resulting in an even bigger nightmare.<br />
Or am I wrong ? I hope so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ustaman</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-1016</link>
		<dc:creator>Ustaman</dc:creator>
		<pubDate>Tue, 09 Feb 2010 16:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-1016</guid>
		<description>@Benedict
1. Of course you can change the output-folder by modifying your pom.xml to have separate output-folders for your class-files.
U mean the output folder for eclipse could be configured to be different than the one in the pom.xml? How?</description>
		<content:encoded><![CDATA[<p>@Benedict<br />
1. Of course you can change the output-folder by modifying your pom.xml to have separate output-folders for your class-files.<br />
U mean the output folder for eclipse could be configured to be different than the one in the pom.xml? How?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benedikt</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-779</link>
		<dc:creator>Benedikt</dc:creator>
		<pubDate>Fri, 10 Jul 2009 12:40:09 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-779</guid>
		<description>Just some notes from my experience with the plugin to address your issues:

1. Of course you can change the output-folder by modifying your pom.xml to have separate output-folders for your class-files.
2. You can tell the plugin which maven installation it should use and it doesn&#039;t break anything if you do so.
3. If you don&#039;t use the internamm maven builder then maven will use the JRE configured under &quot;Installed JREs&quot;.

Give it a try - it takes a little time getting used to but I wouldn&#039;t want to miss working with the plugin.</description>
		<content:encoded><![CDATA[<p>Just some notes from my experience with the plugin to address your issues:</p>
<p>1. Of course you can change the output-folder by modifying your pom.xml to have separate output-folders for your class-files.<br />
2. You can tell the plugin which maven installation it should use and it doesn&#8217;t break anything if you do so.<br />
3. If you don&#8217;t use the internamm maven builder then maven will use the JRE configured under &#8220;Installed JREs&#8221;.</p>
<p>Give it a try &#8211; it takes a little time getting used to but I wouldn&#8217;t want to miss working with the plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-765</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 18 Jun 2009 21:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-765</guid>
		<description>I will definitely keep an eye on it. Thanks, Brian.</description>
		<content:encoded><![CDATA[<p>I will definitely keep an eye on it. Thanks, Brian.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Fox</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-764</link>
		<dc:creator>Brian Fox</dc:creator>
		<pubDate>Thu, 18 Jun 2009 14:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-764</guid>
		<description>I hope you take another look when M2e 0.9.9 is released. This version significantly alters how the maven and eclipse integration is performed. Instead of using the maven lifecycle inside the IDE, it instead delegates only certain pieces to maven plugins and the rest is left to eclipse. These changes should address all three of your concerns.</description>
		<content:encoded><![CDATA[<p>I hope you take another look when M2e 0.9.9 is released. This version significantly alters how the maven and eclipse integration is performed. Instead of using the maven lifecycle inside the IDE, it instead delegates only certain pieces to maven plugins and the rest is left to eclipse. These changes should address all three of your concerns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-762</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 17 Jun 2009 13:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-762</guid>
		<description>Maven is definitely not a &quot;slam-dunk&quot; decision to use, that&#039;s for sure. It has many benefits, but also a lot of pain.

In our situation at work, Maven has been a nett win. It&#039;s just been (and continues to be) a very bumpy ride.</description>
		<content:encoded><![CDATA[<p>Maven is definitely not a &#8220;slam-dunk&#8221; decision to use, that&#8217;s for sure. It has many benefits, but also a lot of pain.</p>
<p>In our situation at work, Maven has been a nett win. It&#8217;s just been (and continues to be) a very bumpy ride.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Smith</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-761</link>
		<dc:creator>John Smith</dc:creator>
		<pubDate>Wed, 17 Jun 2009 13:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-761</guid>
		<description>One more reason not to use maven.</description>
		<content:encoded><![CDATA[<p>One more reason not to use maven.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Everton</title>
		<link>http://twasink.net/blog/2009/06/m2eclipse-plugin-is-not-for-me/comment-page-1/#comment-759</link>
		<dc:creator>Dan Everton</dc:creator>
		<pubDate>Tue, 16 Jun 2009 21:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://twasink.net/blog/?p=650#comment-759</guid>
		<description>The Eclipse IAM project (formerly Q4E) seems be the new hotness for Maven Eclipse integration. I&#039;ve never had much luck with m2eclipse, but IAM at least seems to work on smaller projects without drastically slowing down smaller projects.

http://www.eclipse.org/iam/</description>
		<content:encoded><![CDATA[<p>The Eclipse IAM project (formerly Q4E) seems be the new hotness for Maven Eclipse integration. I&#8217;ve never had much luck with m2eclipse, but IAM at least seems to work on smaller projects without drastically slowing down smaller projects.</p>
<p><a href="http://www.eclipse.org/iam/" rel="nofollow">http://www.eclipse.org/iam/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
