博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
较快的maven的settings.xml文件
阅读量:5318 次
发布时间:2019-06-14

本文共 986 字,大约阅读时间需要 3 分钟。

<?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>

 

 

转载于:https://www.cnblogs.com/fqfanqi/p/9539042.html

你可能感兴趣的文章
面对问题,如何去分析?(日报问题)
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
Java多线程基础(一)
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
初始面向对象
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
Unity 5.4 测试版本新特性---因吹丝停
查看>>
7.5 文件操作
查看>>
MyEclipse中将普通Java项目convert(转化)为Maven项目
查看>>
node js 安装.node-gyp/8.9.4 权限 无法访问
查看>>
windows基本命令
查看>>
VMware中CentOS设置静态IP
查看>>
[poj1006]Biorhythms
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
Hover功能
查看>>
js千分位处理
查看>>
Mac---------三指拖移
查看>>
字符串类型的相互转换
查看>>
HTTP状态码
查看>>