您的位置:首页 > 其它

maven配置本地仓库(从本地仓库下载jar包到.m2仓库)

2017-06-08 17:55 435 查看
Windows--》preference







把你的settings.xml存到一个地方

maven指向你的settings.xml

settings.xml里的地址是你们私服的本地地址

就好啦

下面是settings.xml的内容:

<?xml version="1.0" encoding="UTF-8"?>
<settings   xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository >e:/m2/repo</localRepository>

<mirrors>
<mirror>
<id>central</id>
<name>central</name>
<url>http://192.168.0.107:8081/nexus/content/repositories/central/</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>

</settings>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: