概述
项目打包,报错,保存信息:程序包com.sun.image.codec.jpeg不存在
解决办法,通过配置maven-compiler-plugin插件可以解决此问题
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<verbose />
<bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
maven打包报错.png
最后
以上就是土豪白羊为你收集整理的3、Maven打包 程序包com.sun.image.codec.jpeg不存在的全部内容,希望文章能够帮你解决3、Maven打包 程序包com.sun.image.codec.jpeg不存在所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复