org.mule.tools.maven 中出现无法解决的错误

Unresolveable error occured in org.mule.tools.maven

我在 Maven 中收到以下错误

项目构建错误:无法解析的构建扩展:插件 org.mule.tools.maven:mule-app-maven-plugin:1.1 或其依赖项之一无法解析:找不到工件 com.sun:tools :罐: 1.5.0 在指定路径 C:\Program Files\Java\jre7/../lib/tools.jar

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.jaggedpeak</groupId>
<artifactId>amazon-integration</artifactId>
<version>1.0.0</version>
<packaging>mule</packaging>
<name>Mule amazon-integration Application</name>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8
    </project.reporting.outputEncoding>

    <mule.version>3.7.0</mule.version>
    <mule.tools.version>1.1</mule.tools.version>
    <munit.version>1.1.0</munit.version>
    <mule.munit.support.version>3.7.1</mule.munit.support.version>
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>org.mule.tools.maven</groupId>
            <artifactId>mule-app-maven-plugin</artifactId>
            <version>${mule.tools.version}</version>
            <extensions>true</extensions>
            <configuration>
                <copyToAppsDirectory>true</copyToAppsDirectory>
                <inclusions>
                    <inclusion>
                        <groupId>org.mule.modules</groupId>
                        <artifactId>mule-module-extensions-support</artifactId>
                    </inclusion>
                    <inclusion>
                        <groupId>org.mule.modules</groupId>
                        <artifactId>mule-module-extensions-spring-support</artifactId>
                    </inclusion>
                </inclusions>
            </configuration>
        </plugin>
     <plugins>
  </build>

注意: 以下是我的发现,我的构建指向JDK,没有下载限制。

将您的项目指向 jdk 而不是 jre。