Maven打包 程序包com.sun.image.codec.jpeg不存在

报错原因:

项目中要压缩图片

 用maven 打包时,提示

程序包com.sun.image.codec.jpeg不存在

解决方法:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
          <source>1.8</source>
          <target>1.8</target>
          <encoding>UTF-8</encoding>
          <compilerArguments>
             <verbose />                           
        <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath> </compilerArguments> </configuration> </plugin>
原文地址:https://www.cnblogs.com/wongzzh/p/15469576.html