2012-08-01 52 views
0

我得到這個錯誤:「生命週期配置沒有涵蓋的插件執行:org.mule .tools:maven-mule-plugin:1.5:attach-test-resources(execution:default-attach-test-resources,phase:validate)「生命週期配置不包括的插件執行:org.mule.tools:maven-mule-plugin:1.5:attach-test-resources

我使用的是MuleStudio 1.30,我試圖運行gnip4j中包含的mule示例。

有關如何解決此問題的任何想法?

p.s.我是一個總的行家的n00b

回答

3

您可以通過添加以下XML片段部分,你的pom.xml 構建

<pluginManagement> 
     <plugins> 
      <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> 
      <plugin> 
       <groupId>org.eclipse.m2e</groupId> 
       <artifactId>lifecycle-mapping</artifactId> 
       <version>1.0.0</version> 
       <configuration> 
        <lifecycleMappingMetadata> 
         <pluginExecutions> 
          <pluginExecution> 
           <pluginExecutionFilter> 
            <groupId> 
             org.mule.tools 
            </groupId> 
            <artifactId> 
             maven-mule-plugin 
            </artifactId> 
            <versionRange> 
             [1.5,) 
            </versionRange> 
            <goals> 
             <goal> 
              attach-test-resources 
             </goal> 
            </goals> 
           </pluginExecutionFilter> 
           <action> 
            <ignore></ignore> 
           </action> 
          </pluginExecution> 
         </pluginExecutions> 
        </lifecycleMappingMetadata> 
       </configuration> 
      </plugin> 
     </plugins> 
    </pluginManagement> 
修復

您可以找到主題的更多信息here:

相關問題