大家好,又见面了,我是你们的朋友全栈君。
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:\develop\maven_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>
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/141590.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...