Blogger Information
Blog 60
fans 0
comment 0
visits 66681
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【阿里云镜像】配置阿里云Maven 镜像
大宝
Original
762 people have browsed it

一、参考链接

1️⃣阿里巴巴开源镜像站-OPSX镜像站-阿里云开发者社区 (aliyun.com)

2️⃣maven镜像-maven下载地址-maven安装教程-阿里巴巴开源镜像站 (aliyun.com)

3️⃣Maven 环境配置 | 菜鸟教程 (runoob.com)

二、Maven简介

Maven 翻译为”专家”、”内行”,是 Apache 下的一个纯 Java 开发的开源项目。基于项目对象模型(缩写:POM)概念,Maven利用一个中央信息片断能管理一个项目的构建、报告和文档等步骤。

Maven 是一个项目管理工具,可以对 Java 项目进行构建、依赖管理。

Maven 也可被用于构建和管理各种项目,例如 C#,Ruby,Scala 和其他语言编写的项目。Maven 曾是 Jakarta 项目的子项目,现为由 Apache 软件基金会主持的独立 Apache 项目。

三、Maven下载安装配置

下载链接:Maven – Download Apache Maven

==本文基于Windows系统下安装配置Maven环境==

1、检查Java环境

前提准备已经安装好JDK

Microsoft Windows [版本 10.0.19043.1415](c) Microsoft Corporation。保留所有权利。C:\Users\xybdiy>java -versionjava version "1.8.0_311"Java(TM) SE Runtime Environment (build 1.8.0_311-b11)Java HotSpot(TM) 64-Bit Server VM (build 25.311-b11, mixed mode)C:\Users\xybdiy>

2、下载对应的压缩包

image-20211221130702338

3、设置Maven环境变量

打开运行框,输入sysdm.cpl,打开系统属性。

image-20211221131246357

点击“高级”,选择“环境变量”。

image-20211221131143176

新建系统变量 MAVEN_HOME,变量值:D:\Maven\apache-maven-3.8.4

image-20211221131414606

编辑系统变量 Path,添加变量值:%MAVEN_HOME%\bin

image-20211221131532122

4、测试Maven环境

Microsoft Windows [版本 10.0.19043.1415](c) Microsoft Corporation。保留所有权利。C:\Users\xybdiy>mvn -vApache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)Maven home: D:\Maven\apache-maven-3.8.4Java version: 1.8.0_102, vendor: Oracle Corporation, runtime: D:\Program Files\Java\jdk1.8.0_102\jreDefault locale: zh_CN, platform encoding: GBKOS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"C:\Users\xybdiy>

四、Maven镜像配置

打开 Maven 的配置文件(windows机器一般在maven安装目录的conf/settings.xml),在<mirrors></mirrors>标签中添加 mirror 子节点:

<mirror>    <id>aliyunmaven</id>    <mirrorOf>*</mirrorOf>    <name>阿里云公共仓库</name>    <url>https://maven.aliyun.com/repository/public</url></mirror>

image-20211221132103136

image-20211221132212172

image-20211221132402511

如果想使用其它代理仓库,可在<repositories></repositories>节点中加入对应的仓库使用地址。以使用spring代理仓为例:

<repository>    <id>spring</id>    <url>https://maven.aliyun.com/repository/spring</url>    <releases>        <enabled>true</enabled>    </releases>    <snapshots>        <enabled>true</enabled>    </snapshots></repository>

image-20211221132806510

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post