maven警告:com.sun.image.codec.jpeg.JPEGCodec 是 Sun 的专用 API,可能会在未来版本中删除

来源:互联网 发布:淘宝怎么提高浏览量 编辑:程序博客网 时间:2024/06/05 03:24

警告:com.sun.image.codec.jpeg.JPEGCodec 是
Sun 的专用 API,可能会在未来版本中删除
解决办法

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

<plugin>  <artifactId>maven-compiler-plugin</artifactId>                <configuration>                    <encoding>UTF-8</encoding>                    <compilerArguments>                        <verbose />                        <bootclasspath>${java.home}\lib\rt.jar</bootclasspath>                    </compilerArguments>                </configuration>            </plugin>


0 0
原创粉丝点击