2016-04-07 9 views
0

einen Fehler Haben Sie während der soapui-maven-plugin zum POM Eintrag hinzufügen:einen Fehler Haben Sie beim Hinzufügen der soapui-Maven-Plugin

Error: Plugin com.smartbear.soapui:soapui-pro-maven-plugin:5.1.2 or one of its dependencies could not be resolved

Analyse: Ausgabe trat beim Test Zugabe in pom.xml

Problem trat auf, während unter phase Element in pom.xml Hinzufügen‘

<executions> 
    <execution> 
     <goals> 
      <goal>test</goal> 
     </goals> 
    <phase>test</phase> 
    </execution> 
</executions> 
+0

Ausgabe aufgetreten Test in pom.xml \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t Test \t \t \t \t \t \t \t \t \t \t \t \t Test \t \t \t \t \t \t \t \t \t

+0

Zeigen Sie den Rest Ihrer Pom, sonst: kann nicht reproduzieren! – SiKing

Antwort

0

Try-ID einzufügen:

<executions> 
    <execution> 
     <id>soapUI</id> 
     <phase>test</phase> 
     <goals> 
     <goal>test</goal> 
     </goals> 
    </execution> 
    </executions> 
Verwandte Themen