Cocould not find artifact com. Sun: Tools: jar: 1.5.0 Solution

Source: Internet
Author: User

> Problem Description

In the maven web project, the Pom. xml file has the error "cocould not find artifact com. Sun: Tools: jar: 1.5.0", causing the entire project to fail to be compiled correctly.

> Cause

JRE does not include the com. Sun: Tools: jar: 1.5.0 package, but JDK does. Therefore, you can use JDK to compile the environment.

> Solution (1)

Add the following content to the Pom. xml or parent pom of the web Project:

Parameters

<Properties> <java. Home> D:/Java/jdk1.6.0 _ 07 </Java. Home> <! -- Specify the JDK installation directory --> </Properties>

Dependency

<dependency>      <groupId>com.sun</groupId>      <artifactId>tools</artifactId>      <version>1.5.0</version>      <scope>system</scope>      <systemPath>${java.home}/lib/tools.jar</systemPath></dependency>

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.