maven下载jar包速度太慢的解决方法

1.在maven的settings.xml中添加镜像配置

<mirror>
      <id>alimavenid>
      <name>aliyun mavenname>
      <url>http://maven.aliyun.com/nexus/content/groups/public/url>
      <mirrorOf>centralmirrorOf>       
mirror>

2.添加后发现还是没起作用,还需要在项目的pom.xml中添加以下配置

<repositories>
		<repository>
			<id>nexus-aliyunid>
			<name>nexus-aliyunname>
			<url>http://maven.aliyun.com/nexus/content/groups/public/url>
			<releases>
				<enabled>trueenabled>
			releases>
			<snapshots>
				<enabled>falseenabled>
			snapshots>
		repository>
	repositories>

你可能感兴趣的:(maven)