Maven编译源代码指定JDK版本

<build>
    <plugins>
      <!-- 指定jdk,防止update project -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
          <!-- 项目编码-->
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
</build>
 

猜你喜欢

转载自blog.csdn.net/starcraft501/article/details/82727105
今日推荐