<?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 for Goldin++</title>
	<atom:link href="http://evgeny-goldin.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://evgeny-goldin.com/blog</link>
	<description>args.each{ println it }</description>
	<lastBuildDate>Sun, 29 Jan 2012 02:21:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on 3 ways to install Git on Linux (Ubuntu) by hypehuman</title>
		<link>http://evgeny-goldin.com/blog/3-ways-install-git-linux-ubuntu/#comment-2715</link>
		<dc:creator>hypehuman</dc:creator>
		<pubDate>Sun, 29 Jan 2012 02:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=2523#comment-2715</guid>
		<description>Thanks man, I&#039;m totally new to Linux so this helped a lot.</description>
		<content:encoded><![CDATA[<p>Thanks man, I&#8217;m totally new to Linux so this helped a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Maven plugins released! by Evgeny Goldin</title>
		<link>http://evgeny-goldin.com/blog/maven-plugins-released/#comment-2714</link>
		<dc:creator>Evgeny Goldin</dc:creator>
		<pubDate>Wed, 25 Jan 2012 23:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=3042#comment-2714</guid>
		<description>In this case you can still tie the invocation to any phase like &quot;deploy&quot; and then put the plugin configuration in profile so that it&#039;s not run by default. The file will be copied only when &lt;strong&gt;&lt;code&gt;&quot;mvn deploy -PmyProfile&quot;&lt;/code&gt;&lt;/strong&gt; is invoked. 

SSH key authentication isn&#039;t supported yet, you can follow &lt;a href=&quot;http://evgeny-goldin.org/youtrack/issue/pl-393&quot; rel=&quot;nofollow&quot;&gt;this&lt;/a&gt; issue. 

One thing you can do is to use a &lt;a href=&quot;http://evgeny-goldin.com/wiki/Maven-properties-plugin&quot; rel=&quot;nofollow&quot;&gt;&quot;maven-properties-plugin&quot;&lt;/a&gt; to read authentication data (user and password) from a file and define ${user} and ${pass} properties which can then be used to configure the copy plugin scp copy operation. 

&quot;maven-properties-plugin&quot; has a &quot;verbose&quot; flag just for that purpose - setting it to &quot;false&quot; doesn&#039;t echo the properties defined. I use it to set FTP/SCP paths for my tests &lt;a href=&quot;https://github.com/evgeny-goldin/maven-plugins-test/blob/998f9718923adfe86686e50d84d4e6e02cb65702/pom.xml#L242&quot; rel=&quot;nofollow&quot;&gt;this way&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>In this case you can still tie the invocation to any phase like &#8220;deploy&#8221; and then put the plugin configuration in profile so that it&#8217;s not run by default. The file will be copied only when <strong><code>"mvn deploy -PmyProfile"</code></strong> is invoked. </p>
<p>SSH key authentication isn&#8217;t supported yet, you can follow <a href="http://evgeny-goldin.org/youtrack/issue/pl-393" rel="nofollow">this</a> issue. </p>
<p>One thing you can do is to use a <a href="http://evgeny-goldin.com/wiki/Maven-properties-plugin" rel="nofollow">&#8220;maven-properties-plugin&#8221;</a> to read authentication data (user and password) from a file and define ${user} and ${pass} properties which can then be used to configure the copy plugin scp copy operation. </p>
<p>&#8220;maven-properties-plugin&#8221; has a &#8220;verbose&#8221; flag just for that purpose &#8211; setting it to &#8220;false&#8221; doesn&#8217;t echo the properties defined. I use it to set FTP/SCP paths for my tests <a href="https://github.com/evgeny-goldin/maven-plugins-test/blob/998f9718923adfe86686e50d84d4e6e02cb65702/pom.xml#L242" rel="nofollow">this way</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Maven plugins released! by Bob</title>
		<link>http://evgeny-goldin.com/blog/maven-plugins-released/#comment-2713</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 25 Jan 2012 08:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=3042#comment-2713</guid>
		<description>Tying to deploy phase means putting artefact (war) into our company nexus and I do not want to do that for every snapshot I make - over time nexus would containt hundreds of heavy artefacts.

Currently I have tied the scp to a package phase, but this obviously is not a solution.


	alpha-deploy
	
		
			
				com.goldin.plugins
				maven-copy-plugin
				0.2.3.6
				
					
						deploy-war
						package
						
							copy
						
						
							
								scp://username:password@alpha.company.com:war
								${project.build.directory}/myweb.war
							
						
					
				
			
		
	


Can you give me an example of how to copy the war to a remote server? Also, a solution which uses username and password from my settings file or even better - authenticate via my ssh generated key.

Thanks for any input.</description>
		<content:encoded><![CDATA[<p>Tying to deploy phase means putting artefact (war) into our company nexus and I do not want to do that for every snapshot I make &#8211; over time nexus would containt hundreds of heavy artefacts.</p>
<p>Currently I have tied the scp to a package phase, but this obviously is not a solution.</p>
<p>	alpha-deploy</p>
<p>				com.goldin.plugins<br />
				maven-copy-plugin<br />
				0.2.3.6</p>
<p>						deploy-war<br />
						package</p>
<p>							copy</p>
<p>								scp://username:password@alpha.company.com:war<br />
								${project.build.directory}/myweb.war</p>
<p>Can you give me an example of how to copy the war to a remote server? Also, a solution which uses username and password from my settings file or even better &#8211; authenticate via my ssh generated key.</p>
<p>Thanks for any input.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Maven plugins released! by Evgeny Goldin</title>
		<link>http://evgeny-goldin.com/blog/maven-plugins-released/#comment-2712</link>
		<dc:creator>Evgeny Goldin</dc:creator>
		<pubDate>Fri, 20 Jan 2012 17:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=3042#comment-2712</guid>
		<description>Hi Bob,

Tying scp plugin execution to a certain phase is what I did, I think it was &quot;deploy&quot;. You can try executing the plugin from the command line but I never did so. What is the reason you don&#039;t want to bind it to existing phase?</description>
		<content:encoded><![CDATA[<p>Hi Bob,</p>
<p>Tying scp plugin execution to a certain phase is what I did, I think it was &#8220;deploy&#8221;. You can try executing the plugin from the command line but I never did so. What is the reason you don&#8217;t want to bind it to existing phase?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Maven plugins released! by Bob</title>
		<link>http://evgeny-goldin.com/blog/maven-plugins-released/#comment-2711</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Fri, 20 Jan 2012 10:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=3042#comment-2711</guid>
		<description>Hello,

great plugins you have written!

I am trying to use the upload scp functionality from the maven-copy-plugin. I want to copy a generated war to a remote jetty server.

Is it possible to execute the copy command on demand with some mvn command or one have to use the executions maven feature? I do not want to tie uploading my war to remote server to be redeployed in the jetty container to some existing maven phase.

Thanks for the answer!</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>great plugins you have written!</p>
<p>I am trying to use the upload scp functionality from the maven-copy-plugin. I want to copy a generated war to a remote jetty server.</p>
<p>Is it possible to execute the copy command on demand with some mvn command or one have to use the executions maven feature? I do not want to tie uploading my war to remote server to be redeployed in the jetty container to some existing maven phase.</p>
<p>Thanks for the answer!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software development communities in Israel by Ken Egozi</title>
		<link>http://evgeny-goldin.com/blog/software-development-communities-israel/#comment-2707</link>
		<dc:creator>Ken Egozi</dc:creator>
		<pubDate>Mon, 16 Jan 2012 19:12:39 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=2553#comment-2707</guid>
		<description>https://groups.google.com/group/altnetisrael</description>
		<content:encoded><![CDATA[<p><a href="https://groups.google.com/group/altnetisrael" rel="nofollow">https://groups.google.com/group/altnetisrael</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software development communities in Israel by Evgeny Goldin</title>
		<link>http://evgeny-goldin.com/blog/software-development-communities-israel/#comment-2706</link>
		<dc:creator>Evgeny Goldin</dc:creator>
		<pubDate>Mon, 16 Jan 2012 18:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=2553#comment-2706</guid>
		<description>A similar list from Ron Gross:
http://www.quora.com/What-developer-groups-exist-in-Israel</description>
		<content:encoded><![CDATA[<p>A similar list from Ron Gross:<br />
<a href="http://www.quora.com/What-developer-groups-exist-in-Israel" rel="nofollow">http://www.quora.com/What-developer-groups-exist-in-Israel</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 ways to install Git on Linux (Ubuntu) by destryalhmns</title>
		<link>http://evgeny-goldin.com/blog/3-ways-install-git-linux-ubuntu/#comment-2705</link>
		<dc:creator>destryalhmns</dc:creator>
		<pubDate>Sat, 14 Jan 2012 00:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=2523#comment-2705</guid>
		<description>thanks man, worked weirdly easily.</description>
		<content:encoded><![CDATA[<p>thanks man, worked weirdly easily.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 ways to install Git on Linux (Ubuntu) by Day 3 &#171; do {blog();} while (j == awesome);</title>
		<link>http://evgeny-goldin.com/blog/3-ways-install-git-linux-ubuntu/#comment-2704</link>
		<dc:creator>Day 3 &#171; do {blog();} while (j == awesome);</dc:creator>
		<pubDate>Thu, 05 Jan 2012 14:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=2523#comment-2704</guid>
		<description>[...] I have version 1.7.0.4 of Git already running. But the methods on both the Git website and this blog have yet to yield the desired result of updating me to 1.7.8.2. I might just leave Git as it is and [...]</description>
		<content:encoded><![CDATA[<p>[...] I have version 1.7.0.4 of Git already running. But the methods on both the Git website and this blog have yet to yield the desired result of updating me to 1.7.8.2. I might just leave Git as it is and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 ways to install Git on Linux (Ubuntu) by Justin Robinson</title>
		<link>http://evgeny-goldin.com/blog/3-ways-install-git-linux-ubuntu/#comment-2703</link>
		<dc:creator>Justin Robinson</dc:creator>
		<pubDate>Thu, 05 Jan 2012 14:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://evgeny-goldin.com/blog/?p=2523#comment-2703</guid>
		<description>Like Garrett, I&#039;m rather new to Ubuntu and Git. Version 1.7.0.4 is already on my machine, but after trying to use each of the three methods here to try and upgrade to 1.7.8.2, nothing has changed. Could there be something I overlooked? I&#039;m sure I copied the commands word-for-word.</description>
		<content:encoded><![CDATA[<p>Like Garrett, I&#8217;m rather new to Ubuntu and Git. Version 1.7.0.4 is already on my machine, but after trying to use each of the three methods here to try and upgrade to 1.7.8.2, nothing has changed. Could there be something I overlooked? I&#8217;m sure I copied the commands word-for-word.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

