maven中setting设置之私服与jdk版本设置

私服设置

<mirror>
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://localhost:8081/nexus/content/groups/public/</url>
    </mirror>

 指定jdk版本

<profile>
      <id>jdk-1.8</id>

      <activation>
        <jdk>1.8</jdk>
      </activation>

    </profile>

修改上述位置即可

猜你喜欢

转载自full-stack.iteye.com/blog/2264247