Skip to content

Instantly share code, notes, and snippets.

@v0y4g3r
Created October 12, 2017 03:11
Show Gist options
  • Save v0y4g3r/5726086952ff4eadaad6dd6d8f64ab2e to your computer and use it in GitHub Desktop.
Save v0y4g3r/5726086952ff4eadaad6dd6d8f64ab2e to your computer and use it in GitHub Desktop.
[阿里云Maven仓库配置] #maven #java
<project>
<!-- 阿里云maven仓库 -->
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment