Error message:
1. Missing artifact jdk.tools:jdk.tools:jar:1.8 [Maven Dependency Problem]
2. The container ‘Maven Dependencies‘ references non existing library ‘D:\.m2\repository\jdk\tools\jdk.tools\1.8\jdk.tools-1.8.jar‘
需要引入Maven依赖,如下所示:
<dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.8</version> <scope>system</scope> <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath> </dependency>
原文地址:https://www.cnblogs.com/romancetown/p/9149772.html
时间: 2024-10-07 15:14:51