maven警告:com.sun.image.codec.jpeg.JPEGCodec 是 Sun 的

警告:com.sun.image.codec.jpeg.JPEGCodec 是java

Sun 的专用 API,可能会在将来版本中删除maven

解决办法spa

在pom.xml中bulid -> publgins加入:
code

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
      <configuration>
         <encoding>UTF-8</encoding>
         <compilerArguments>
                  <verbose />
                  <bootclasspath>${java.home}\lib\rt.jar</bootclasspath>
           </compilerArguments>
     </configuration>
</plugin>
相关文章
相关标签/搜索