/chinawangfei/article/details/122049810
1. General useMavenCentral warehouse address
- 1. /nexus/
- / (I recommend the warehouse)
- 3. /maven2
about Maven There are two ways to configure remote warehouse addresses:
The1Type: Directly in the project pom.xml Modifications in the file (not recommended, especially in the multi-person-assisted development process, is very laborious and laborious);
The2Type: Maven The remote repository is uniformly configured to Maven of in the configuration file.
two,Maven Central warehouse address list
1, Alibaba Central Warehouse (Preferred Recommendation)
- <repository>
- <id>alimaven</id>
- <name>aliyun maven</name>
- <url>/nexus/content/groups/public/</url>
- </repository>
2、 Central Warehouse (Part 12Recommended use)
- <repository>
- <id>activiti-repos2</id>
- <name>Activiti Repository 2</name>
- <url>/nexus/content/groups/public</url>
- </repository>
3、 Central warehouse
- <repository>
- <id>springsource-repos</id>
- <name>SpringSource Repository</name>
- <url>/release/</url>
- </repository>
4、maven.apache.org Central warehouse
- <repository>
- <id>central-repos</id>
- <name>Central Repository</name>
- <url>/maven2</url>
- </repository>
5、 Central warehouse
- <repository>
- <id>central-repos1</id>
- <name>Central Repository 2</name>
- <url>/maven2/</url>
- </repository>
6、 Central Warehouse (Part 13Recommended use)
- <repository>
- <id>activiti-repos</id>
- <name>Activiti Repository</name>
- <url>/nexus/content/groups/public</url>
- </repository>
7、oschina Central warehouse (requiredxWall)
- <repository>
- <id>oschina-repos</id>
- <name>Oschina Releases</name>
- <url>/content/groups/public</url>
- </repository>
8、oschina thinkgem Central warehouse (requiredxWall)
- <repository>
- <id>thinkgem-repos</id>
- <name>ThinkGem Repository</name>
- <url>/thinkgem/repos/raw/master</url>
- </repository>
9、 Central warehouse (requiredxWall)
- <repository>
- <id>java-repos</id>
- <name>Java Repository</name>
- <url>/maven/2/</url>
- </repository>
10、 Central warehouse (requiredxWall)
- <repository>
- <id>thinkgem-repos2</id>
- <name>ThinkGem Repository 2</name>
- <url>/thinkgem/repository/master</url>
- </repository>
three,Maven Central warehouse configuration example
Used here DubboThe official central warehouse is an example, in of profiles Add the following content to the node:
- <profile>
- <id>jdk‐1.8</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <jdk>1.8</jdk>
- </activation>
- <properties>
- <>1.8</>
- <>1.8</>
- <>1.8</>
- </properties>
- <!-- dubbo Official solution -->
- <repositories>
- <repository>
- <id>sonatype-nexus-snapshots</id>
- <url>/content/repositories/snapshots</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- </profile>
Four,Maven Alibaba Cloud (Aliyun) warehouse
The Maven warehouse is abroad by default, and it is inevitable that it is used slowly in China. We can replace it with Alibaba Cloud's warehouse.
Modify the file in the conf folder in the maven root directory, and add the content as follows on the mirrors node:
<mirror>
<id>aliyunmaven</id>
<mirrorOf>*</mirrorOf>
<name>Aliyun Public Warehouse</name>
<url>/repository/public</url>
</mirror>