maven下载安装及配置(win10)

小豆丁 1年前 ⋅ 175 阅读

maven 官方下载地址:

https://archive.apache.org/dist/maven/maven-3/

https://archive.apache.org/dist/maven/binaries/

1、下载地址:http://tools.ugoodu.com/apache-maven-3.3.9.zip

2、解压安装:

3、配置环境变量:

4、修改setting.xml:参考配置如下

<?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</localRepository>
  <pluginGroups>
  </pluginGroups>
  <proxies>
  </proxies>
   <servers>
  </servers>
  <mirrors>
  <!--阿里镜像地址-->
	<mirror>
	    <id>nexus-aliyun</id>
	    <mirrorOf>*</mirrorOf>
	    <name>Nexus aliyun</name>
	    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
	</mirror>  
  <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
    <mirror>
        <id>central</id>
        <name>Maven Repository Switchboard</name>
        <url>http://repo1.maven.org/maven2/</url>
        <mirrorOf>central</mirrorOf>
    </mirror>
    <mirror>
        <id>repo2</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://repo2.maven.org/maven2/</url>
    </mirror>
  </mirrors>
   <profiles>
			<profile>
			<id>nexus-aliyun</id>
			<repositories>
				<repository>
					<id>nexus-aliyun</id> 
					<name>Nexus aliyun</name> 
					<url>http://maven.aliyun.com/nexus/content/groups/public</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</repository>
			</repositories>
			<pluginRepositories>
				<pluginRepository>
					<id>nexus-aliyun</id> 
					<name>Nexus aliyun</name> 
					<url>http://maven.aliyun.com/nexus/content/groups/public</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</pluginRepository>
			</pluginRepositories>
		</profile> 
  </profiles>
  <activeProfiles>
	<activeProfile>nexuesProfile</activeProfile>
	<activeProfile>nexus-aliyun</activeProfile>
  </activeProfiles>
</settings>

5、idea的maven配置指向本地安装的maven: image.png image.png


全部评论: 0

    我有话说: