码迷,mamicode.com
首页 > 编程语言 > 详细

Spring日记_01 之 Maven搭建

时间:2017-08-22 13:53:37      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:xmlns   file   阿里云   aliyun   ted   reference   环境   local   instance   

# 项目环境搭建

## 1. Eclipse + Maven

中央库太慢所以使用     阿里云镜像:maven.aliyun.com

 

1. 配置Aliyun Maven 仓库

导入配置文件  settings.xml

Window – Preferences – Maven – User Settings - Global Settings 选择settings.xml

技术分享

 

附:settings.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>F:/maven</localRepository>

	<pluginGroups>
	</pluginGroups>

	<proxies>
	</proxies>

	<servers>
	</servers>

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

	</profiles>
	<activeProfiles>
	</activeProfiles>

</settings>

 

完成之后 F:/maven 路径下会生成maven库

技术分享

 

 2. 创建项目测试Maven

Spring日记_01 之 Maven搭建

标签:xmlns   file   阿里云   aliyun   ted   reference   环境   local   instance   

原文地址:http://www.cnblogs.com/tanrong/p/7411109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!