我添加pom依赖文件总是报错是怎么回事
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>5.15.0</version>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>5.15.0</version>
</dependency>
</dependencies>
2017-08-25
如果Maven的setting里没有设置阿里的仓库地址下载二十多兆的jar包速度非常慢,最后可能就会连接超时,需要在setting.xml文件中设置一下阿里仓库的地址,这个是国外仓库的镜像,速度快多了,防火墙可把程序员坑苦了。
把以下代码加到setting.xml文件中的<mirrors></mirrors>中间
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
举报