[Maven]package抛异常 com.sun.image.codec.jpeg does not exist

版权声明:作者:上善若水rs 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 https://blog.csdn.net/sofeware333/article/details/89569148

解决方案:在pom.xml加上

<plugin>
     <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>2.5</version>
      <configuration>
           <source>1.8</source>
           <target>1.8</target>
           <compilerArgument>-XDignore.symbol.file</compilerArgument>
       </configuration>
</plugin>

猜你喜欢

转载自blog.csdn.net/sofeware333/article/details/89569148