1. 程式人生 > >Missing artifact jdk.tools:jdk.tools:jar:1.8解決

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>