Missing artifact jdk.tools:jdk.tools:jar:1.8解决


Missing artifact jdk.tools:jdk.tools:jar:1.8错误

添加tools依赖即可:

        <dependency>
            <groupId>jdk.tools</groupId>
            <artifactId>jdk.tools</artifactId>
            <version>1.8</version>
            <scope>system</scope>
            <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
        </dependency>

posted @ 2018-06-28 16:21  vtopqx  阅读(17)  评论(0)    收藏  举报