Maven error missing artifact jdk.tools:jdk.tools:jar:1.7--turn

Source: Internet
Author: User

Original address: http://blog.csdn.net/u013281331/article/details/40824707

Checking out the MAVEN project in Eclipse, has been reporting this error: "Missing artifact jdk.tools:jdk.tools:jar:1.7"

See the entire pom.xml file and see other exceptions.

And the Tools.jar package is the JDK comes with, so suspect Pom.xml since the Baoyin-type dependency Tools.jar package, and Tools.jar is not in the library,

Like: The current project depends on a package, and a package in the development of the packaging process depends on the Tools.jar package, now a released, our project relies on a package, so we should add Tools.jar package in the package dependency;

After this analysis, the problem is solved, directly in the pom.xml to add a dependent project:

        <Dependency>            <groupId>Jdk.tools</groupId>            <Artifactid>Jdk.tools</Artifactid>            <version>1.7</version>            <Scope>System</Scope>            <Systempath>${java_home}/lib/tools.jar</Systempath>        </Dependency>

Problem solved.

Maven error missing artifact jdk.tools:jdk.tools:jar:1.7--turn

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.