我是靠谱客的博主 含蓄棒棒糖,最近开发中收集的这篇文章主要介绍用Eclipse构建Maven项目,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Eclipse中m2eclipse插件的安装

Help>Install New Software

Click Add

Name: m2e

Location: http://download.eclipse.org/technology/m2e/releases

Click OK

It seems that the plug-in has already been installed in this version of eclipse. If not, just click next until the last and restart eclipse.

 

Configuration:

  1. 绑定maven的安装目录

Window>Preferences

Click Add and add the installation home of maven

Click Finish choose the item

 

Click Apply and OK

  2. 设置自定义本地仓库

Open settings.xml

修改默认的本地仓库位置

<localRepository>F:/m3/repository</localRepository>

修改默认的中央仓库镜像

<mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
    <mirror>
      <id>ibiblio</id>
      <mirrorOf>central</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://mirrors.ibiblio.org/maven2/</url>
    </mirror>
  </mirrors>

保存所做的修改,同时还需要把这个settings.xml文件复制一份到“F:/m3”目录下

Window>Preferences

 

Create a new maven project

Choose maven-archetype-webapp

如果这一步出错了,请参考 http://jingyan.baidu.com/article/63acb44ad96e4b61fcc17ecf.html

Group Id: 基本包名

Artifact Id: 项目名

Click Finish

 

转载于:https://www.cnblogs.com/zhezhe/p/4890182.html

最后

以上就是含蓄棒棒糖为你收集整理的用Eclipse构建Maven项目的全部内容,希望文章能够帮你解决用Eclipse构建Maven项目所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部