|
|
@@ -1,13 +1,45 @@
|
|
|
<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">
|
|
|
+ http://maven.apache.org/xsd/settings-1.0.0.xsd">
|
|
|
<mirrors>
|
|
|
<mirror>
|
|
|
- <id>nexus-aliyun</id>
|
|
|
+ <id>aliyunmaven</id>
|
|
|
<mirrorOf>central</mirrorOf>
|
|
|
- <name>Nexus aliyun</name>
|
|
|
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
|
|
+ <name>阿里云公共仓库</name>
|
|
|
+ <url>https://maven.aliyun.com/repository/public</url>
|
|
|
</mirror>
|
|
|
</mirrors>
|
|
|
-</settings>
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>nexus</id>
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>Public Repositories</name>
|
|
|
+ <url>http://nexus.seecoder.cn/repository/maven-public</url>
|
|
|
+ </repository>
|
|
|
+ <repository>
|
|
|
+ <id>releases</id>
|
|
|
+ <name>Public Repositories</name>
|
|
|
+ <url>http://nexus.seecoder.cn/repository/maven-releases</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
+ <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ </profiles>
|
|
|
+ <activeProfiles>
|
|
|
+ <activeProfile>nexus</activeProfile>
|
|
|
+ </activeProfiles>
|
|
|
+ <servers>
|
|
|
+ <server>
|
|
|
+ <id>nexus</id>
|
|
|
+ <username>admin</username>
|
|
|
+ <password>NJU67nexus</password>
|
|
|
+ </server>
|
|
|
+ </servers>
|
|
|
+</settings>
|