Maven download and installation configuration


Download Maven

Maven download link
Insert picture description here
Insert picture description here

Configure environment variables

Insert picture description here
Insert picture description here

Insert picture description here
Insert picture description here
Test it, so it's configured
Insert picture description here

Configure the settings.xml file

Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
(You can directly copy the code below)

<mirrors>
	<mirror>
			<id>nexus-aliyun</id>
			<mirrorOf>*</mirrorOf>
			<name>Nexus aliyun</name>
			<url>http://maven.aliyun.com/nexus/content/groups/public</url>
	</mirror>
</mirrors>

test

Insert picture description here

Guess you like

Origin blog.csdn.net/pary__for/article/details/111648609