欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maven项目中pom文件总是爆红的原因

程序员文章站 2022-04-26 10:29:35
...

在编写ssm项目或是springboot项目前,要先确保我们maven中的settings.xml增添了这两个阿里云镜像与jdk,大部分人可能都配置了镜像,但是没有配置jdk,这是导致我们pom文件总是爆红的原因之一。配置代码如下 快拿去更改吧,注意应当放在对应的位置。

<mirrors>
      <mirror>
        <id>nexus-aliyun</id>
        <mirrorOf>central</mirrorOf>
        <name>Nexus aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public</url>
      </mirror>
  </mirrors>
 
  <profiles>
         <profile>
              <id>jdk-1.8</id>
              <activation>
                <activeByDefault>true</activeByDefault>
                <jdk>1.8</jdk>
              </activation>
              <properties>
                <maven.compiler.source>1.8</maven.compiler.source>
                <maven.compiler.target>1.8</maven.compiler.target>
                <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
              </properties>
         </profile>
  </profiles>

相关标签: maven xml java