maven 依賴出錯Missing artifact com.sun:tools:jar:1.8.0

錯誤信息:

Missing artifact com.sun:tools:jar:1.8.0

這個是缺乏jar引發。在pom文件加入如下依賴便可spa

<!-- tools -->
<dependency>
            <groupId>com.sun</groupId>
            <artifactId>tools</artifactId>
            <version>1.8.0</version>
            <scope>system</scope>
            <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
            <optional>true</optional>
</dependency>io

相關文章
相關標籤/搜索