Unresolved SBT dependency com.google.errorprone#error_prone_annotations;[2.3.2,2.3.3]: not found

469 Views Asked by At

I am trying to add the errorprone dependency via sbt, and it is having trouble resolving one of the errorprone dependencies. I am new to Java/Scala development and will really appreciate your help! The following is the error i am getting.

[error] (providers / update) sbt.librarymanagement.ResolveException: unresolved dependency: com.google.errorprone#error_prone_annotations;[2.3.2,2.3.3]: not found [error] download failed: com.google.errorprone#error_prone_annotations;2.3.2!error_prone_annotations.jar [error] Total time: 10 s, completed Aug 13, 2020 10:40:27 AM

1

There are 1 best solutions below

0
Sidra Tariq On

I resolved it!!!

I had an issue with my local environment setup as i am working behind a proxy i had to add proxy configuration in my git settings.

git config --global http.proxy http://<my_proxy>:<my_port>

git config --global https.proxy https://<my_proxy>:<my_port>