Blame view

backend/tools/maven/settings.xml 1.76 KB
8ea9c133   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<settings>
    <localRepository>D:/.m2/repository</localRepository>
    <mirrors>
        <mirror>
            <id>internal-repository</id>
            <name>Internal Repository Manager</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <mirror>
            <id>internal-repository-thirdparty</id>
            <name>internal-repository-thirdparty</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>thirdparty</mirrorOf>
        </mirror>
    </mirrors>
    <profiles>
        <repository>
            <id>offical</id>
            <name>Maven Official Repository</name>
            <url>http://repo1.maven.org/maven2</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
        <profile>
            <id>hotent-remote</id>
            <repositories>
                <repository>
                    <id>hotent-remote</id>
                    <name>remote hotent maven release</name>
                    <url>http://www.hotent.xyz:8081/nexus/repository/maven-public/</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>hotent-remote</id>
                    <name>remote hotent maven release</name>
                    <url>http://www.hotent.xyz:8081/nexus/repository/maven-public/</url>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>hotent-remote</activeProfile>
        <activeProfile>offical</activeProfile>
    </activeProfiles>
</settings>