MAVEN打包异常-程序包com.sun.image.codec.jpeg不存在

MAVEN打包异常-程序包com.sun.image.codec.jpeg不存在

MAVEN打包异常-程序包com.sun.image.codec.jpeg不存在

mvn clean install

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

原因:maven默认jdk路径下没有image这个包

解决方案:pom文件添加

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.5.1</version>
  <configuration>
     <source>1.6</source>
     <target>1.6</target>
     <encoding>UTF-8</encoding>
     <compilerArguments>
        <verbose />
 <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
     </compilerArguments>
  </configuration>
</plugin>

 

MAVEN打包异常-程序包com.sun.image.codec.jpeg不存在

扫码关注我们

MAVEN打包异常-程序包com.sun.image.codec.jpeg不存在

 

MAVEN打包异常-程序包com.sun.image.codec.jpeg不存在

热爱生活的旅行客