<?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>
<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>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>mvnrepository</id>
<url>http://mvnrepository.com/artifact/</url>
<!-- <updatePolicy>always</updatePolicy> -->
</repository>
<repository>
<id>maven2</id>
<url>http://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>msgpack.org</id>
<name>MessagePack Repository for Maven</name>
<url>http://msgpack.org/maven2</url>
<!-- <updatePolicy>always</updatePolicy> -->
</repository>
<repository>
<id>releases.costs.com</id>
<name>Local Repository for Maven</name>
<url>http://192.168.2.206:8081/nexus/content/repositories/releases/</url>
<!-- <updatePolicy>always</updatePolicy> -->
</repository>
<repository>
<id>thirdparty.costs.com</id>
<name>Local Repository for Maven</name>
<url>http://192.168.2.206:8081/nexus/content/repositories/thirdparty/</url>
<!-- <updatePolicy>always</updatePolicy> -->
</repository>
</repositories>
<id>artifactory</id>
</profile>
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>artifactory</activeProfile>
</activeProfiles>
<servers>
<server>
<id>copower.com</id>
<username>admin</username>
<password>123456</password>
</server>
</servers>
</settings>
settings.xml
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Maven setting中私有仓库配置浅析 最近遇到过不少这样那样的问题,曾经做过maven的分享,但是发现当时...
- 通过maven扫描时,在settings.xml中添加配置如下: 然后用下列mvn命令编译时 Settings.x...
- settings.xml 下载速度不错,点击下面链接试试。 http://maven.aliyun.com
- 恢复Maven默认的Settings.xml 最近在编译最新的Hive代码的时候,总是报不能找到javax.el这...