Forum Discussion

ASB1's avatar
ASB1
Visitor
5 years ago
Solved

Unable to find com.smartbear.soapui:soapui-maven-plugin:jar:5.1.3 in https://repo.maven.apache.org/

Getting below error when I run project via maven command: mvn clean install:

[ERROR] Plugin com.smartbear.soapui:soapui-maven-plugin:5.1.3 or one of its dependencies could not be resolved: Failure to find com.smartbear.soapui:soapui-maven-plugin:jar:5.1.3 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]

  • The SoapUI plugin is not available in Maven Central. As per documentation, you need to configure the SmartBear repository.

    <pluginRepositories>
      <pluginRepository>
        <id>SmartBearPluginRepository</id>
        <url>http://smartbearsoftware.com/repository/maven2</url>
      </pluginRepository>
    </pluginRepositories>
    

3 Replies

  • SiKing's avatar
    SiKing
    Community Expert

    The SoapUI plugin is not available in Maven Central. As per documentation, you need to configure the SmartBear repository.

    <pluginRepositories>
      <pluginRepository>
        <id>SmartBearPluginRepository</id>
        <url>http://smartbearsoftware.com/repository/maven2</url>
      </pluginRepository>
    </pluginRepositories>
    
    • Olga_T's avatar
      Olga_T
      SmartBear Alumni (Retired)

      Hi all,

       

      Thanks everyone for the suggestions!

       

      ASB1, have you had a chance to try the new version or to configure the SmartBear repository as stated above? Does any of the recommendations help?