- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
开始使用maven了整理
下载maven
/download.html
下载2.2.1的稳定版本
3.0还在试用期
有必要再下载一个pdf的参考文档
下载后解压
配置环境变量,方便命令行调用mvn命令
将bin目录添加到path
在命令行中查看下帮助,看一下,有安装,配置好没
下载maven插件
/sites/m2e/
使用的eclipse版本
把上面的手动下载
构建插件路径
在eclipse目录下的links(没有,新建一个)目录下,新建maven2eclipse_0100209-0800.link
内容为:
重启clipse后,看到
从/maven2更新索引,这里提供了许多java的jar包
Maven的eclipse配置
在新建的java工程上右键 maven
转成maven工程
使用自己的maven repository 仓库
Setting.xml文件内容
?xml version=1.0 encoding=UTF-8?
settings xmlns=/SETTINGS/1.0.0
xmlns:xsi=/2001/XMLSchema-instance
xsi:schemaLocation=/SETTINGS/1.0.0 /xsd/settings-1.0.0.xsd
localRepositoryd:/javatools/.m2/repository/localRepository
!-- interactiveMode
| This will determine whether maven prompts you when it needs input. If set to false,
| maven will use a sensible default value, perhaps based on some other setting, for
| the parameter in question.
|
| Default: true
interactiveModetrue/interactiveMode
--
!-- offline
| Determines whether maven should attempt to connect to the network when executing a build.
| This will have an effect on artifact downloads, artifact deployment, and others.
|
| Default: false
offlinefalse/offline
--
!-- pluginGroups
| This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
| when invoking a command line like mvn prefix:goal. Maven will automatically add the group identifiers
| org.apache.maven.plugins and org.codehaus.mojo if these are not already contained in the list.
|--
pluginGroups
!-- pluginGroup
| Specifies a further group identifier to use for plugin lookup.
pluginGroupcom.your.plugins/pluginGroup
--
/pluginGroups
!-- proxies
| This is a list of proxies which can be used on this machine to connect to the network.
| Unless otherwise specified (by system property or command-line switch), the first proxy
| specification in this list marked as active will be used.
|--
proxies
!-- proxy
| Specificati
文档评论(0)