forked from hugegraph/hugegraph-sync
132 lines
5.5 KiB
XML
132 lines
5.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with this
|
|
work for additional information regarding copyright ownership. The ASF
|
|
licenses this file to You under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
License for the specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
|
|
<!-- 修改这里更改本地缓存路径
|
|
<localRepository>
|
|
/path/to/cache/
|
|
</localRepository>
|
|
-->
|
|
<!-- <servers>-->
|
|
<!-- <server>-->
|
|
<!-- <id>star-local</id>-->
|
|
<!-- <username>superstar</username>-->
|
|
<!-- <password>Superstar12345</password>-->
|
|
<!-- </server>-->
|
|
<!-- <server>-->
|
|
<!-- <id>star-snapshot</id>-->
|
|
<!-- <username>superstar</username>-->
|
|
<!-- <password>Superstar12345</password>-->
|
|
<!-- </server>-->
|
|
<!-- </servers>-->
|
|
<profiles>
|
|
<profile>
|
|
<id>baidu</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>baidu-nexus</id>
|
|
<url>http://maven.baidu-int.com/nexus/content/groups/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>baidu-nexus-snapshot</id>
|
|
<url>http://maven.baidu-int.com/nexus/content/groups/public-snapshots</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<!-- 项目组自建仓库-->
|
|
<!-- <repository>-->
|
|
<!-- <id>star</id>-->
|
|
<!-- <url>http://10.14.139.8:8082/artifactory/star</url>-->
|
|
<!-- <releases>-->
|
|
<!-- <enabled>true</enabled>-->
|
|
<!-- <updatePolicy>always</updatePolicy>-->
|
|
<!-- </releases>-->
|
|
<!-- <snapshots>-->
|
|
<!-- <enabled>true</enabled>-->
|
|
<!-- <updatePolicy>always</updatePolicy>-->
|
|
<!-- </snapshots>-->
|
|
<!-- </repository>-->
|
|
<!-- end -->
|
|
|
|
<repository>
|
|
<id>Baidu_Local</id>
|
|
<url>http://maven.baidu-int.com/nexus/content/repositories/Baidu_Local</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>Baidu_Local_Snapshots</id>
|
|
<url>
|
|
http://maven.baidu-int.com/nexus/content/repositories/Baidu_Local_Snapshots
|
|
</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories> <!-- plugin也需要从repository中获取 -->
|
|
<pluginRepository>
|
|
<id>baidu-nexus</id>
|
|
<url>http://maven.baidu-int.com/nexus/content/groups/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>baidu-nexus-snapshot</id>
|
|
<url>http://maven.baidu-int.com/nexus/content/groups/public-snapshots</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</profile>
|
|
</profiles>
|
|
|
|
<activeProfiles>
|
|
<activeProfile>baidu</activeProfile> <!--别忘了激活配置 -->
|
|
</activeProfiles>
|
|
</settings> |