Hello, I am trying to JAR for my selenium gradle p...
# community-support
b
Hello, I am trying to JAR for my selenium gradle project and not able to update sources and getting below error.
Copy code
Unable to download com.salesforce.csg.testautomation.services:CSG-UnifiedTestAutomation-Services:7.0.0-local-SNAPSHOT:sources from MavenLocal. Ensure that all the artifact's components are available in this repository. Alternatively, adjust the order of repositories in build.gradle to prioritize downloading from the repository with the full set of components.
v
mavenLocal()
is broken by design in Maven already. It makes your builds slow, flaky, and unreliable. You should avoid using it whenever you can, and if you really need it, then only as last in the list and optimally always with a repository content filter to control what exactly is resolved from there.