pom.xml中添加远程仓库
Posted timetraveler
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pom.xml中添加远程仓库相关的知识,希望对你有一定的参考价值。
maven的pom.xml中添加远程仓库
<repositories> <repository> <id>mvnrepository</id> <name>mvnrepository</name> <url>http://www.mvnrepository.com/</url> <layout>default</layout> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
以上是关于pom.xml中添加远程仓库的主要内容,如果未能解决你的问题,请参考以下文章