2016-11-17 3 views
-1

エラーメッセージを示唆SOAPUI-のmaven-pluginの:SOAPUI-MAVE のn-プラグイン::jarファイル:4.6.1またはそのDEPE ndenciesの一つがcom.smartbear.soapuiを見つけるためエラーメッセージ</p> <p>[ERROR]プラグインcom.smartbear.soapui:テストは.Kindly CMDに登場

障害を解決することができませんでしたhttps://repo.maven.apache.org/maven2で4.6.1はキャッシュされましたloc のリポジトリで、c entralの更新間隔が経過するか更新が強制されるまで解決は再試行されません

答えて

0

soapuiプラグインがrepo https://repo.maven.apache.org/maven2で利用できないため、このエラーが発生しています。 pom.xmlに次の行を追加してください。

<repositories> 
    <repository> 
     <id>smartbear-sweden-repository</id> 
     <url>http://smartbearsoftware.com/repository/maven2/</url> 
    </repository> 
</repositories> 
<pluginRepositories> 
    <pluginRepository> 
     <id>smartbear-sweden-plugin-repository</id> 
     <url>http://smartbearsoftware.com/repository/maven2/</url> 
    </pluginRepository> 
</pluginRepositories> 
関連する問題