<?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>HHdem:s blog &#187; maven</title>
	<atom:link href="http://hhdem.com/tag/maven/feed/" rel="self" type="application/rss+xml" />
	<link>http://hhdem.com</link>
	<description>飞向自由的天空</description>
	<lastBuildDate>Sun, 20 May 2012 16:01:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>将Jar文件导入Maven资源库中</title>
		<link>http://hhdem.com/2012/05/20/jar-import-to-maven-repo/</link>
		<comments>http://hhdem.com/2012/05/20/jar-import-to-maven-repo/#comments</comments>
		<pubDate>Sun, 20 May 2012 15:50:10 +0000</pubDate>
		<dc:creator>hhdem</dc:creator>
				<category><![CDATA[coder]]></category>
		<category><![CDATA[jar]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://hhdem.com/?p=591</guid>
		<description><![CDATA[<a href="http://hhdem.com/2012/05/20/jar-import-to-maven-repo/" title="将Jar文件导入Maven资源库中"></a>命令如下： -Dfile:文件路径 -DgroupId:Pom.xml文件中引用的groupId -DartifactId:同上 -Dversion:同上]]></description>
			<content:encoded><![CDATA[<a href="http://hhdem.com/2012/05/20/jar-import-to-maven-repo/" title="将Jar文件导入Maven资源库中"></a><p>命令如下：</p>
<pre class="brush: plain; title: ; notranslate">mvn install:install-file -Dfile=D:\Jar\spring-social-weibo-0.
2.0.RELEASE.jar -DgroupId=com.couponornot -DartifactId=spring-social-weibo
-Dversion=0.2.0.RELEASE -Dpackaging=jar -DgeneratePom=true
-DcreateChecksum=true</pre>
<p>-Dfile:文件路径<br />
-DgroupId:Pom.xml文件中引用的groupId<br />
-DartifactId:同上<br />
-Dversion:同上</p>
]]></content:encoded>
			<wfw:commentRss>http://hhdem.com/2012/05/20/jar-import-to-maven-repo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用Git下载和导入项目到maven库</title>
		<link>http://hhdem.com/2012/05/20/%e4%bd%bf%e7%94%a8git%e4%b8%8b%e8%bd%bd%e5%92%8c%e5%af%bc%e5%85%a5%e9%a1%b9%e7%9b%ae%e5%88%b0maven%e5%ba%93/</link>
		<comments>http://hhdem.com/2012/05/20/%e4%bd%bf%e7%94%a8git%e4%b8%8b%e8%bd%bd%e5%92%8c%e5%af%bc%e5%85%a5%e9%a1%b9%e7%9b%ae%e5%88%b0maven%e5%ba%93/#comments</comments>
		<pubDate>Sun, 20 May 2012 14:43:20 +0000</pubDate>
		<dc:creator>hhdem</dc:creator>
				<category><![CDATA[coder]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://hhdem.com/?p=589</guid>
		<description><![CDATA[<a href="http://hhdem.com/2012/05/20/%e4%bd%bf%e7%94%a8git%e4%b8%8b%e8%bd%bd%e5%92%8c%e5%af%bc%e5%85%a5%e9%a1%b9%e7%9b%ae%e5%88%b0maven%e5%ba%93/" title="使用Git下载和导入项目到maven库"></a>Step 1: Get the code from GitHub git clone &#8211;recursive git://github.com/xxx.git Step 2: Use Maven to build project cd xxx mvn clean install Step 3: Add xxx project as a Maven dependency]]></description>
			<content:encoded><![CDATA[<a href="http://hhdem.com/2012/05/20/%e4%bd%bf%e7%94%a8git%e4%b8%8b%e8%bd%bd%e5%92%8c%e5%af%bc%e5%85%a5%e9%a1%b9%e7%9b%ae%e5%88%b0maven%e5%ba%93/" title="使用Git下载和导入项目到maven库"></a><h2>Step 1: Get the code from GitHub</h2>
<p>git clone &#8211;recursive git://github.com/xxx.git</p>
<h2>Step 2: Use Maven to build project</h2>
<p>cd xxx mvn clean install</p>
<h2>Step 3: Add xxx project as a Maven dependency</h2>
<pre class="brush: plain; title: ; notranslate">&lt;dependency&gt;
    &lt;groupId&gt;package&lt;/groupId&gt;
    &lt;artifactId&gt;xxx&lt;/artifactId&gt;
    &lt;version&gt;version&lt;/version&gt;
&lt;/dependency&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hhdem.com/2012/05/20/%e4%bd%bf%e7%94%a8git%e4%b8%8b%e8%bd%bd%e5%92%8c%e5%af%bc%e5%85%a5%e9%a1%b9%e7%9b%ae%e5%88%b0maven%e5%ba%93/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>注意更新maven的jetty plugin,解决eclipse中编辑静态文件时的死锁问题!</title>
		<link>http://hhdem.com/2010/06/23/update_maven_plugin_jetty_to_newest/</link>
		<comments>http://hhdem.com/2010/06/23/update_maven_plugin_jetty_to_newest/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 06:38:51 +0000</pubDate>
		<dc:creator>hhdem</dc:creator>
				<category><![CDATA[coder]]></category>
		<category><![CDATA[jetty]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://hhdem.com/?p=269</guid>
		<description><![CDATA[<a href="http://hhdem.com/2010/06/23/update_maven_plugin_jetty_to_newest/" title="注意更新maven的jetty plugin,解决eclipse中编辑静态文件时的死锁问题!"></a>解决方法参考:Maven+Jetty免静态文件 死锁的处理 和 解决Jetty运行时锁定静态文件(css, js, image)的问题 使用Maven2加入Jetty的插件,初步运行成功后,发现在Jetty服务启动后无法修改js/css等静态文件,那可是极不爽的事情,总不能修改一个js/css就要重启下Jetty吧!就算只有几个按钮,累积起来也很浪费时间! 由于我既使用maven-jetty-plugin插件,作为Maven下Web快速应用开发的工具,而在Eclipse中Debug项目时采用的是Run-jetty-run插件,通过查看Maven+Jetty免静态文件 死锁的处理 链接解决了控制台下启动后修改报错的问题后,进入Eclipse通过Run-jetty-run启动后问题依然存在,发现Run-jetty-run插件的Jetty版本为Eclipse中的老版本,遵照&#8220;解决Jetty运行时锁定静态文件(css, js, image)的问题&#8220;链接,将Jetty升级到6.1.24版本,并修改相关设置后,问题解决.]]></description>
			<content:encoded><![CDATA[<a href="http://hhdem.com/2010/06/23/update_maven_plugin_jetty_to_newest/" title="注意更新maven的jetty plugin,解决eclipse中编辑静态文件时的死锁问题!"></a><h3><span style="font-weight: normal;">解决方法参考:</span><a href="http://itstarting.javaeye.com/blog/598695"><span style="font-weight: normal;">Maven+Jetty免静态文件 死锁的处理</span></a><span style="font-weight: normal;"> 和 </span><a href="http://hi.baidu.com/d1985/blog/item/67adfc19f274f173dbb4bd17.html" target="_blank"><span style="font-weight: normal;">解决Jetty运行时锁定静态文件(css, js, image)的问题</span></a></h3>
<p>使用Maven2加入Jetty的插件,初步运行成功后,发现在Jetty服务启动后无法修改js/css等静态文件,那可是极不爽的事情,总不能修改一个js/css就要重启下Jetty吧!就算只有几个按钮,累积起来也很浪费时间!</p>
<p>由于我既使用maven-jetty-plugin插件,作为Maven下Web快速应用开发的工具,而在Eclipse中Debug项目时采用的是<a href="http://code.google.com/p/run-jetty-run/" target="_blank">Run-jetty-run</a>插件,通过查看<strong><a href="http://itstarting.javaeye.com/blog/598695">Maven+Jetty免静态文件 死锁的处理</a> </strong>链接解决了控制台下启动后修改报错的问题后,进入Eclipse通过Run-jetty-run启动后问题依然存在,发现Run-jetty-run插件的Jetty版本为Eclipse中的老版本,遵照<strong>&#8220;</strong><strong><a href="http://hi.baidu.com/d1985/blog/item/67adfc19f274f173dbb4bd17.html" target="_blank">解决Jetty运行时锁定静态文件(css, js, image)的问题</a>&#8220;</strong>链接,将Jetty升级到6.1.24版本,并修改相关设置后,问题解决.</p>
]]></content:encoded>
			<wfw:commentRss>http://hhdem.com/2010/06/23/update_maven_plugin_jetty_to_newest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

