<?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>3rojka ultd &#187; english</title>
	<atom:link href="http://blog.3rojka.com/item/category/english/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.3rojka.com</link>
	<description></description>
	<lastBuildDate>Thu, 10 Dec 2009 13:04:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Eclipse Callisto + mevenide EE</title>
		<link>http://blog.3rojka.com/item/eclipse-callisto-mevenide-ee/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=eclipse-callisto-mevenide-ee</link>
		<comments>http://blog.3rojka.com/item/eclipse-callisto-mevenide-ee/#comments</comments>
		<pubDate>Sun, 24 Sep 2006 12:15:42 +0000</pubDate>
		<dc:creator>3rojka</dc:creator>
				<category><![CDATA[devel]]></category>
		<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://blog.3rojka.com/index.php/2006/09/24/eclipse-callisto-mevenide-ee/</guid>
		<description><![CDATA[This is english edition of one of my previous posts. I decided to write it in english after couple mails that I received where people were asking me to send them the modified jar, because they probably read about the fix in codehause jira.
&#8222;I have a problem with mevenide plugin with Eclipse 3.2 (POM
Synchronizer) and [...]]]></description>
			<content:encoded><![CDATA[<p>This is english edition of one of my previous posts. I decided to write it in english after couple mails that I received where people were asking me to send them the modified jar, because they probably read about the fix in codehause jira.</p>
<blockquote><p><em>&#8222;I have a problem with mevenide plugin with Eclipse 3.2 (POM<br />
Synchronizer) and I read your workaround on JIRA<br />
(<a target="_blank" onclick="return top.js.OpenExtLink(window,event,this)" href="http://jira.codehaus.org/browse/MEVENIDE-394">http://jira.codehaus.org/browse/MEVENIDE-394</a>).&#8220;</em></p></blockquote>
<p>In order to get this working you only need to copy this modified jar to  ECPLISE_ROOT/plugins/org.mevenide.ui_0.4.0/<a title="Opravený mevenide.ui jar" href="http://download.3rojka.com/mevenide-ui-eclipse-0.4.0.jar">mevenide-ui-eclipse-0.4.0.jar</a>.</p>
<p align="left">If you wish to compile it yourself you need to get the mevenide sources from their subversion and replace class <a target="_blank" title="fix for mevenide eclipse plugin" href="http://download.3rojka.com/ToggleWritePropertiesAction.java">ToggleWritePropertiesAction</a>.</p>
<p>I have been using this patch for quite a while and have not experienced any problem with it. If you have any problem or question send me a comment or email, I am glad to contribute.</p>
<p>Good luck using <a target="_blank" title="The ultimate IDE" href="http://www.eclipse.org/">eclipse</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.3rojka.com%2Fitem%2Feclipse-callisto-mevenide-ee%2F&amp;linkname=Eclipse%20Callisto%20%2B%20mevenide%20EE"><img src="http://blog.3rojka.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.3rojka.com/item/eclipse-callisto-mevenide-ee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to multiproject:clean in maven</title>
		<link>http://blog.3rojka.com/item/how-to-mulitprojectclean-in-maven/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-mulitprojectclean-in-maven</link>
		<comments>http://blog.3rojka.com/item/how-to-mulitprojectclean-in-maven/#comments</comments>
		<pubDate>Mon, 17 Jul 2006 05:07:14 +0000</pubDate>
		<dc:creator>3rojka</dc:creator>
				<category><![CDATA[devel]]></category>
		<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://blog.3rojka.com/index.php/2006/07/17/how-to-mulitprojectclean-in-maven/</guid>
		<description><![CDATA[ 			 			 			 		 		 	  I ran into a problem with multiproject:clean. The problem was that if you have multiple projects where one supproject is dependent on another, then you will have a problem because maven tries to get dependencies even when you dont need them (obviously for clean you do not [...]]]></description>
			<content:encoded><![CDATA[<p><code><!-- this list of things to delete is lifted from clean:clean --> 			 			 			 		 		 	  </code>I ran into a problem with multiproject:clean. The problem was that if you have multiple projects where one supproject is dependent on another, then you will have a problem because maven tries to get dependencies even when you dont need them (obviously for clean you do not have to need some dependecies). So the multiproject:clean can end up with unsatisfied dependency error.<br />
So I was googleing and found work arround:</p>
<p><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;<br />
&lt;project default="all"<br />
xmlns:m="jelly:maven" xmlns:j="jelly:core"</code><br />
<code> xmlns:ant="jelly:ant"&gt;<br />
&lt;goal name="multiproject:clean"&gt;</code><br />
<code> &lt;m:reactor basedir="."</code><br />
<code> banner="Gathering project list"</code><br />
<code> includes="**/project.xml"</code><br />
<code> postProcessing="true"</code><br />
<code> ignoreFailures="true"</code><br />
<code> collectOnly="true" /&gt;</code><br />
<code> &lt;j:forEach var="reactorProject"</code><br />
<code> items="${reactorProjects}"&gt;</code><br />
<code> &lt;!-- this list of things to delete is lifted from clean:clean --&gt;</code><br />
<code> &lt;ant:delete</code><br />
<code> dir="${reactorProject.context.getVariable('maven.build.dest')}" /&gt;</code><br />
<code> &lt;ant:delete</code><br />
<code> dir="${reactorProject.context.getVariable('maven.build.dir')}" /&gt;</code><br />
<code> &lt;ant:delete</code><br />
<code> file="${reactorProject.context.getVariable('basedir')}/velocity.log"</code><br />
<code> quiet="true"</code><br />
<code> failonerror="false" /&gt;</code><br />
<code> &lt;/j:forEach&gt;<br />
&lt;/goal    &gt;</code><code><br />
</code><code> &lt;/project&gt;<br />
</code></p>
<p>Surely there could be more, but this is suiteable for me now.More on maven:reactor jelly tag see <a href="http://maven.apache.org/maven-1.x/tags.html#maven:reactor">maven documentation</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.3rojka.com%2Fitem%2Fhow-to-mulitprojectclean-in-maven%2F&amp;linkname=How%20to%20multiproject%3Aclean%20in%20maven"><img src="http://blog.3rojka.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.3rojka.com/item/how-to-mulitprojectclean-in-maven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
