<?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: Publishing maven artifacts</title>
	<atom:link href="http://vafer.org/blog/20081026142413/feed" rel="self" type="application/rss+xml" />
	<link>http://vafer.org/blog/20081026142413</link>
	<description>ramblings of a creative mind</description>
	<lastBuildDate>Sun, 07 Mar 2010 01:54:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Oleg</title>
		<link>http://vafer.org/blog/20081026142413/comment-page-1#comment-59312</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://vafer.org/blog/?p=589#comment-59312</guid>
		<description>As per &lt;a href=&quot;http://www.javaworld.com/community/node/3959&quot; rel=&quot;nofollow&quot;&gt;http://www.javaworld.com/community/node/3959&lt;/a&gt; this type of publishing is no longer supported :(</description>
		<content:encoded><![CDATA[<p>As per <a href="http://www.javaworld.com/community/node/3959" rel="nofollow">http://www.javaworld.com/community/node/3959</a> this type of publishing is no longer supported :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: itjobs1</title>
		<link>http://vafer.org/blog/20081026142413/comment-page-1#comment-59277</link>
		<dc:creator>itjobs1</dc:creator>
		<pubDate>Wed, 09 Dec 2009 00:42:29 +0000</pubDate>
		<guid isPermaLink="false">http://vafer.org/blog/?p=589#comment-59277</guid>
		<description>Thanks for that! That&#039;s very useful. ;-)&lt;br&gt;&lt;a href=&quot;http://www.Staffingpower.com&quot; rel=&quot;nofollow&quot;&gt;www.Staffingpower.com&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for that! That&#39;s very useful. ;-)<br /><a href="http://www.Staffingpower.com" rel="nofollow">http://www.Staffingpower.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blaine Simpson</title>
		<link>http://vafer.org/blog/20081026142413/comment-page-1#comment-59148</link>
		<dc:creator>Blaine Simpson</dc:creator>
		<pubDate>Fri, 24 Apr 2009 18:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://vafer.org/blog/?p=589#comment-59148</guid>
		<description>... for either the original access script or mine, check the log file to adjust the &quot;rsync-server*&quot; parameters to exactly what Maven sends.  For getting things started, I recommend using my script and copying the printf line to the top and relaxing the &quot;rsync -server...&quot; pattern until you can see what Maven is sending.</description>
		<content:encoded><![CDATA[<p>&#8230; for either the original access script or mine, check the log file to adjust the &#8220;rsync-server*&#8221; parameters to exactly what Maven sends.  For getting things started, I recommend using my script and copying the printf line to the top and relaxing the &#8220;rsync -server&#8230;&#8221; pattern until you can see what Maven is sending.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blaine Simpson</title>
		<link>http://vafer.org/blog/20081026142413/comment-page-1#comment-59147</link>
		<dc:creator>Blaine Simpson</dc:creator>
		<pubDate>Fri, 24 Apr 2009 18:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://vafer.org/blog/?p=589#comment-59147</guid>
		<description>More succinct access control script with better logging:

#!/bin/bash -p

case &quot;$SSH_ORIGINAL_COMMAND&quot; in
    *[&#039;&amp;;&#039;]*) break;;
    &#039;rsync --server --sender -vLtrze.i . m2repo/&#039;*) exec $SSH_ORIGINAL_COMMAND;;
esac


TIMESTAMP=$(date &#039;+%Y-%m-%d %H:%M:%S&#039;)
printf &quot;%s @%s  Rejected command (%s)\n&quot; &quot;$TIMESTAMP&quot; &quot;${SSH_CLIENT%% *}&quot; &quot;$SSH_ORIGINAL_COMMAND&quot; &gt;&gt; &quot;$HOME/rsync-error.log&quot;
echo &quot;Rejected $SSH_ORIGINAL_COMMAND&quot;</description>
		<content:encoded><![CDATA[<p>More succinct access control script with better logging:</p>
<p>#!/bin/bash -p</p>
<p>case &#8220;$SSH_ORIGINAL_COMMAND&#8221; in<br />
    *['&amp;;']*) break;;<br />
    &#8216;rsync &#8211;server &#8211;sender -vLtrze.i . m2repo/&#8217;*) exec $SSH_ORIGINAL_COMMAND;;<br />
esac</p>
<p>TIMESTAMP=$(date &#8216;+%Y-%m-%d %H:%M:%S&#8217;)<br />
printf &#8220;%s @%s  Rejected command (%s)\n&#8221; &#8220;$TIMESTAMP&#8221; &#8220;${SSH_CLIENT%% *}&#8221; &#8220;$SSH_ORIGINAL_COMMAND&#8221; &gt;&gt; &#8220;$HOME/rsync-error.log&#8221;<br />
echo &#8220;Rejected $SSH_ORIGINAL_COMMAND&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Sanchez</title>
		<link>http://vafer.org/blog/20081026142413/comment-page-1#comment-58953</link>
		<dc:creator>Carlos Sanchez</dc:creator>
		<pubDate>Tue, 28 Oct 2008 16:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://vafer.org/blog/?p=589#comment-58953</guid>
		<description>great! I have added a link to this instructions in the guide
http://maven.apache.org/guides/mini/guide-central-repository-upload.html</description>
		<content:encoded><![CDATA[<p>great! I have added a link to this instructions in the guide<br />
<a href="http://maven.apache.org/guides/mini/guide-central-repository-upload.html" rel="nofollow">http://maven.apache.org/guides/mini/guide-central-repository-upload.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
