Skip to content

Instantly share code, notes, and snippets.

@bGZo
Last active October 20, 2023 16:40
Show Gist options
  • Save bGZo/7b5dd72761034765fa64e38d9e8966f0 to your computer and use it in GitHub Desktop.
Save bGZo/7b5dd72761034765fa64e38d9e8966f0 to your computer and use it in GitHub Desktop.
maven settings.xml
__ __ ____ _ _ _ _
| \/ | __ ___ _____ _ __ / ___| ___| |_| |_(_)_ __ __ _ ___ __ ___ __ ___ | |
| |\/| |/ _` \ \ / / _ \ '_ \ \___ \ / _ \ __| __| | '_ \ / _` / __| \ \/ / '_ ` _ \| |
| | | | (_| |\ V / __/ | | | ___) | __/ |_| |_| | | | | (_| \__ \_ > <| | | | | | |
|_| |_|\__,_| \_/ \___|_| |_| |____/ \___|\__|\__|_|_| |_|\__, |___(_)_/\_\_| |_| |_|_|
|___/
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups> </pluginGroups>
<proxies> </proxies>
<servers> </servers>
<mirrors> </mirrors>
<profiles>
<profile>
<id>ALiYun</id>
<repositories>
<repository>
<id>aliyun</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>Maven Central</id>
<repositories>
<repository>
<id>maven-central</id>
<url>http://central.maven.org/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment