maven配置本地仓库
作者:互联网
1.找到并打开配置文件
找到解压过的maven目录,找到conf目录下的setting.xml,使用Notepad++打开【其他可编辑软件也行】
2.修改配置
找到第52行:Default: ${user.home}/.m2/repository【没错就是被注释的部分中的一句】,
将其下面的:<localRepository>/path/to/local/repo</localRepository>解开注释,将标签内容修改为:E:\develop\apache-maven-3.8.5\mvn_repository
【这是自己建的目录,没有的话就建一个】
3.配置阿里云私服提升速度
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
将以上代码夹在setting.xml的mirrors标签中【通常在145行上下】
如果原来有未注释的mirror标签【也就是正在使用的】就删除掉
4.修改Maven的默认jdk版本
还是setting.xml
找到:profiles标签【一般是倒数第二个标签】
添加代码:
<profile>
<id>jdk-13</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>13</jdk>
</activation>
<properties>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<maven.compiler.compilerVersion>13</maven.compiler.compilerVersion>
</properties>
</profile>
标签:xml,13,仓库,标签,maven,找到,setting,本地 来源: https://www.cnblogs.com/fengzidexuanxue/p/16339576.html