<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>/Users/caiyi/.m2/mija</localRepository>
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>file:///Users/caiyi/.m2/mija</url>
<layout>default</layout>
</mirror>
</mirrors>
<profiles>
<profile>
<id>local</id>
<repositories>
<repository>
<id>local-repo</id>
<url>file:///Users/caiyi/.m2/mija</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>local-repo</id>
<url>file:///Users/caiyi/.m2/mija</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>local</activeProfile>
</activeProfiles>
</settings>
本地settings配置(下载jar包不走中央服务器,走本地)
才艺のblog2024-08-30 4:10
相关推荐
别来无恙1491 小时前
Java 8 Stream API 完全指南:优雅处理集合数据freed_Day1 小时前
Java进阶学习之不可变集合猫头虎1 小时前
如何实现在多跳UDP传输场景,保证单文件和多文件完整传输的成功率?SimonKing2 小时前
深入理解HanLP1.x,填平可能遇到的坑尘心不灭2 小时前
MyBatis 缓存与 Spring 事务相关笔记Java中文社群2 小时前
说说内存泄漏的常见场景和排查方案?C4程序员3 小时前
北京JAVA基础面试30天打卡08货拉拉技术3 小时前
XXL-JOB参数错乱根因剖析:InheritableThreadLocal在多线程下的隐藏危机God-Hrh3 小时前
JVM运维mjy_1114 小时前
Linux下的软件编程——文件IO