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

修改Eclipse中maven项目的JRE等版本,update后又变回默认版本问题

程序员文章站 2022-06-04 21:59:25
...

pom.xml做一下修改source、target参数

  <build>
   <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.0</version>
    <configuration>
    <source>1.7</source>
    <target>1.7</target>
   <encoding>UTF-8</encoding>
   <verbal>true</verbal>
   </configuration>
  </plugin>
 </plugins>
</build>