maven uses the setting.xml configuration file to configure the warehouse address

Only one image library can be configured. Alibaba's cloud address is used here, which is faster

Upload a maven settings.xml configuration file:

<?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">

	<localRepository>D:/maven repository/my_local_repository</localRepository>
	<pluginGroups></pluginGroups>
	<proxies></proxies>
	
	
	<mirrors>
		 <!-- Mirror Library -->
		<mirror>
			<id>alimaven</id>
			<name>aliyun maven</name>
			<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
			<mirrorOf>central</mirrorOf>        
		</mirror>
	</mirrors>
	
	
  <profiles>
    <profile>
      <id>nexus</id>
      <repositories>		
		<repository>
			<id>aliyun-repo</id>
			<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
			<releases><enabled>true</enabled></releases>
			<snapshots><enabled>true</enabled></snapshots>
		</repository>

		<repository>
			<id>repo1</id>
			<url>https://repo1.maven.org/maven2/</url>
			<releases><enabled>true</enabled></releases>
			<snapshots><enabled>true</enabled></snapshots>
		</repository>
      </repositories>
	   <!-- Note: the following configuration is used to specify Maven The plug-in's warehouse cannot be omitted, otherwise it may not be loaded Maven Plug in problems -->
      <pluginRepositories>
		
        <pluginRepository>
          <id>aliyun-plugin</id>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </pluginRepository>
		<pluginRepository>
          <id>repo1-plugin</id>
          <url>https://repo1.maven.org/maven2/</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>

  </profiles>

  <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
</settings>

 

If there is a local maven nexus service, you can add the local library path under the repositories node, so that you can load the jar packaged within the company. If there is a packaged Maven plug-in within the company, you need to add the Maven plug-in library service address under the pluginRepositories node to load the internal Maven plug-in

Keywords: Programming Maven nexus Apache xml

Added by cmaclennan on Thu, 26 Dec 2019 21:04:02 +0200