不然,每次新创建项目,就得配置一次maven,太麻烦了。
直接在偏好设置里设置 maven 只能对本项目生效。
我们必须对全局的配置进行设置。如下图。
① 你的 maven 安装目录。
② 你的 maven setting.xml 文件
③ 你的 maven 仓库,所有下载的 jar 包都会缓存到这个文件夹。
<mirrors>
<mirror>
<id>nexus-aliyunid>
<mirrorOf>centralmirrorOf>
<name>Nexus aliyunname>
<url>http://maven.aliyun.com/nexus/content/groups/publicurl>
mirror>
mirrors>
<profile>
<id>jdk13id>
<activation>
<activeByDefault>trueactiveByDefault>
<jdk>13jdk>
activation>
<properties>
<project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
<maven.compiler.source>13maven.compiler.source>
<maven.compiler.target>13maven.compiler.target>
properties>
profile>
profiles>