首页 > 其他 > 详细

错误: 程序包com.sun.xml.internal.bind.v2.model.core不存在

时间:2021-07-08 09:50:46      阅读:23      评论:0      收藏:0      [点我收藏+]

1.问题描述

maven Install报错: 程序包com.sun.xml.internal.bind.v2.model.core不存在

解决

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<verbose />
<bootclasspath>${java.home}/lib/rt.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
加入上面那段,编译时可以识别到rt.jar包

错误: 程序包com.sun.xml.internal.bind.v2.model.core不存在

原文:https://www.cnblogs.com/withlamb/p/14984519.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!