mule报错 studio:studio goal failed to execute

Build problem on project ProjectName, studio:studio goal failed to execute, check the Maven Output console for logs

这个错 

只要在pom.xml中添加

<pluginRepositories>

    ...
    <pluginRepository>
        <id>mule-ee-public</id>
        <url>https://repository.mulesoft.org/nexus/content/repositories/releases</url>           
    </pluginRepository>
    ...
</pluginRepositories>

这段代码,然后就OK了
原文地址:https://www.cnblogs.com/wraity/p/4893671.html