您的位置:首页 > 其它

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

2014-09-02 08:42 435 查看
警告: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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐