Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SoapUI cannot be built wth a clean .m2/repository directory #815

Open
unisys-abickerton opened this issue Aug 28, 2024 · 1 comment
Open

Comments

@unisys-abickerton
Copy link

Steps to reproduce :

1 clear the .m2/repository directory in the user home
2 clone the repository
3 checkout next / release-5.7.2
4 build "mvn clean install"
[ERROR] Plugin org.codehaus.mojo:xmlbeans-maven-plugin:2.3.5-sb-fixed or one of its dependencies could not be resolved: The following artifacts could not be resolved: org.codehaus.mojo:xmlbeans-maven-plugin:jar:2.3.5-sb-fixed (absent): Could not find artifact org.codehaus.mojo:xmlbeans-maven-plugin:jar:2.3.5-sb-fixed in nexus -> [Help 1]

@unisys-abickerton unisys-abickerton changed the title SoapUI Cannot be built wth a clean .m2/repository directory SoapUI cannot be built wth a clean .m2/repository directory Aug 28, 2024
@daroszp
Copy link
Contributor

daroszp commented Oct 28, 2024

Hello @unisys-abickerton,
Please check #511 (comment) , there is a repository that needs to be added to Maven's settings.xml file:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
              http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <interactiveMode/>
    <usePluginRegistry/>
    <offline/>
    <pluginGroups/>
    <mirrors>
         <mirror>
              <id>nexus</id>
              <mirrorOf>*</mirrorOf>
			  <url>https://rapi.tools.ops.smartbear.io/nexus/content/groups/public</url>
        </mirror>
    </mirrors>
    <proxies/>
</settings>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants