<?xml version="1.0" encoding="UTF-8"?>

<settings>

<!-- <localRepository>/home/yizhen/.m2/repository</localRepository> 需要改成自己的maven的本地仓库地址-->

<mirrors>

<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>nexus</id>

<name>local private nexus</name>

<url>http://maven.oschina.net/content/groups/public/</url>

<releases>

<enabled>true</enabled>

</releases>

<snapshots>

<enabled>false</enabled>

</snapshots>

</repository>

</repositories>

<pluginRepositories>

<pluginRepository>

<id>nexus</id>

<name>local private nexus</name>

<url>http://maven.oschina.net/content/groups/public/</url>

<releases>

<enabled>true</enabled>

</releases>

<snapshots>

<enabled>false</enabled>

</snapshots>

</pluginRepository>

</pluginRepositories>

</profile></profiles>

</settings>

最新文章

  1. 用C语言把双向链表中的两个结点交换位置,考虑各种边界问题。
  2. sparklyr包--实现R与Spark接口
  3. 《区块链:从入门到放弃》之obc安装步骤
  4. iOS - Swift NSNull 空值
  5. jquery中bind事件时的命名空间用法(转)
  6. C#中实现对Excel特定文本的搜索
  7. git Clone SSL certificate problem: self signed certificate
  8. ios 说一说UINavigationController 的堆栈
  9. c语言的一些基础知识
  10. linux系统用户锁定与解锁
  11. 初学linux命令
  12. Python爬虫(二十一)_Selenium与PhantomJS
  13. 图解HTTPS建立过程
  14. Angular动态创建组件之Portals
  15. mysql 水平分表
  16. 转:VB中的API详解
  17. 一、关于a标签伪类中的visited不起作用问题
  18. netstat实现原理
  19. 使用SURF::create()以后报错无法解析
  20. 构建squid代理服务器

热门文章

  1. vim的窗口切换
  2. vim-程序员的利器
  3. WIN XP 命令汇总
  4. Windows 10 开发人员预览版中的新增功能(转自 IT之家)
  5. MongoDB Replica Set搭建集群
  6. Windows Phone 解析手机型号DeviceStatus.DeviceName
  7. js去掉双引号
  8. Linux 高频工具快速教程
  9. 关于Unity的组件和作用
  10. 【BZOJ】1096: [ZJOI2007]仓库建设(dp+斜率优化)