eclipse导入maven项目的设置

2022-09-01 11:22:44 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

Eclipse配置:

1.使用自己的maven:

Windows-preference-maven-user settings,更改为自己安装的maven目录下的设置文件。 conf-settings.

2.安装插件:

* Help-install new software,在work with后的框里直接输入插件安装网址(国外软件,在线安装不推荐)

* Help-eclipse marketplace,直接在搜索框搜索点击install安装(要连eclipse外网,不推荐)

* 直接到相应插件的官网下载插件,本地把解压的插件文件夹直接复制到eclipse-dropins目录下

Maven配置:

1.使用本地jar包仓库:

在maven的settings文件中添加本地仓库位置。

代码:

<localRepository>C:developmaven_repository</localRepository>

2.使用国内镜像加快pom.xml里有的依赖的下载速度:

Setting里添加mirror标签。

代码:

<!– 阿里云仓库 –>

<mirror>

<id>alimaven</id>

<mirrorOf>central</mirrorOf>

<name>aliyun maven</name>

<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>

</mirror>

<!– 中央仓库1 –>

<mirror>

<id>repo1</id>

<mirrorOf>central</mirrorOf>

<name>Human Readable Name for this Mirror.</name>

<url>http://repo1.maven.org/maven2/</url>

</mirror>

<!– 中央仓库2 –>

<mirror>

<id>repo2</id>

<mirrorOf>central</mirrorOf>

<name>Human Readable Name for this Mirror.</name>

<url>http://repo2.maven.org/maven2/</url>

</mirror>

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/141590.html原文链接:https://javaforall.cn

0 人点赞