微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

settings.xml模板

<settings>
  <!-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ~/.m2/repository -->
  <localRepository>D:/.m2/repository</localRepository>




    <pluginGroups> 

    </pluginGroups> 

    <proxies> 

    </proxies> 

    <!-- servers | This is a list of authentication profiles,keyed by the server-id used within the system. | Authentication profiles can be used whenever maven must make a connection to a Remote Server. |--> 
    <servers> 

        <server> 
            <id>snapshots</id> 
            <username>snapshotsAdmin</username> 
            <password>123456</password> 
        </server> 

    </servers> 


    <mirrors> 

        <mirror> 
            <id>tbmirror</id> 
            <mirrorOf>central</mirrorOf> 
            <name>alibaba mirror</name> 
            <url>http://mvnrepo.xxxxxx.com/mvn/repository</url>

        </mirror> 
        <mirror> 
            <id>tbmirror-snapshots</id> 
            <mirrorOf>snapshots</mirrorOf> 
            <name>alibaba mirror snapshots</name> 
            <url>http://mvnrepo.xxxxxx.com/mvn/repository</url> 
        </mirror> 
    </mirrors> 


    <profiles> 

        <profile> 
            <id>nexus</id> 
            <repositories> 
                <repository> 
                    <id>central</id> 
                    <url>http://mvnrepo.xxxxxx.com/mvn/repository</url> 
                    <releases> 
                        <enabled>true</enabled> 
                    </releases> 
                    <snapshots> 
                        <enabled>false</enabled> 
                    </snapshots> 
                </repository> 
                <repository> 
                    <id>snapshots</id> 
                    <url>http://mvnrepo.xxxxxx.com/mvn/repository</url> 
                    <releases> 
                        <enabled>false</enabled> 
                    </releases> 
                    <snapshots> 
                        <enabled>true</enabled> 
                    </snapshots> 
                </repository> 
            </repositories> 
            <pluginRepositories> 
                <pluginRepository> 
                    <id>central</id> 
                    <url>http://mvnrepo.taobao.ali.com/mvn/repository</url> 
                    <releases> 
                        <enabled>true</enabled> 
                    </releases> 
                    <snapshots> 
                        <enabled>false</enabled> 
                    </snapshots> 
                </pluginRepository> 
                <pluginRepository> 
                    <id>snapshots</id> 
                    <url>http://mvnrepo.xxxxxx.com/mvn/repository</url> 
                    <releases> 
                        <enabled>false</enabled> 
                    </releases> 
                    <snapshots> 
                        <enabled>true</enabled> 
                    </snapshots> 
                </pluginRepository> 
            </pluginRepositories> 
        </profile> 

    </profiles> 

    <!-- activeProfiles | List of profiles that are active for all builds. | --> 
    <activeProfiles> 
        <activeProfile>nexus</activeProfile> 
    </activeProfiles> 

</settings>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。