标签:文件中 tar style and jar exp XML jre class
Maven 打包时,不会导入 JDK 内部的依赖( JDK 属于部署的环境,不属于外部的三方依赖;
解决办法:
在pom.xml 文件中,添加如下 plugin 插件;
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> <compilerArguments> <bootclasspath>${JAVA_HOME}/jre/lib/rt.jar;${JAVA_HOME}/jre/lib/jce.jar</bootclasspath> </compilerArguments> </configuration> </plugin>
Maven 打包时,提示 java: 程序包com.sun.xml.internal.ws.fault 不存在 和 javax.crypto 不存在
标签:文件中 tar style and jar exp XML jre class
原文地址:https://www.cnblogs.com/damaoa/p/12777418.html