码迷,mamicode.com
首页 > 其他好文 > 详细

maven的一些使用配置!

时间:2016-05-11 15:08:04      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

1.国外库太慢,更换为国内镜像库
在你的maven安装目录下找到conf目录下的setting.xml
修改:
<mirrors>
<id>CN</id>
<name>OSChina Central</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirrors>

2.采用archetype生成项目的时候,卡在:Generating project in Batch mode时间太长
首先手工下载http://repo1.maven.org/maven2/archetype-catalog.xml文件,放置在C:\Users\Administrator\.m2\repository\org\apache\maven\archetype\archetype-catalog\2.4目录下
然后生成的时候在命令行后面加上参数:-DarchetypeCatalog=local

3.使用IDEA,生成解决办法:
在file->other settings->default settings->build,Execution,Deployment->build Tools->Maven->Runner里面的VM Options:里面填写-DarchetypeCatalog=local
IDEA里面的vaadin项目Maven运行配置:
run->edit run configurations command line写上:package jetty:run

maven的一些使用配置!

标签:

原文地址:http://www.cnblogs.com/softman11/p/5481754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!