Reputation: 505
I'm trying to Run Cucumber scripts using Selenium webdriver integrated with Jenkins. But, I'm seeing the below error. I couldn't see JVM jar file in the mentioned path. Please suggest.
Failure to find info.cukes:cucumber-jvm:jar:1.2.4 in http://10.119.4.88:8080/archiva/repository/OB_Repo was cached in the local repository, resolution will not be reattempted until the update interval of central-proxy has elapsed or updates are forced
Upvotes: 0
Views: 76
Reputation: 14746
The error
Failure to find info.cukes:cucumber-jvm:jar:1.2.4 in http://10.119.4.88:8080/archiva/repository/OB_Repo
Seems to suggest that you perhaps have a intranet level Maven repository (Something similar to repo1.maven.org) defined via one of the following means
<mirrors>
section<repositories>
And your Maven repository http://10.119.4.88:8080
does not have the Cucumber jars available in it.
To fix this, you would need to remove the reference to your Maven repository http://10.119.4.88:8080
(based on wherever its been defined) (or) work with your Maven repository managing team to get this sorted out.
Upvotes: 2