Hi everyone,
I'm trying out to migrate our relatively large pom.xml at the moment, using [bazel-deps]() and I'm getting several checksum errors such as:
```
at com.github.johnynek.bazel_deps.CoursierResolver$$anonfun$2.apply(CoursierResolver.scala:98)
...
```
I tried explicitly declaring commons-httpclient:commons-http-client:3.1 in input yaml file, and the error went away.
However, I keep on getting more of these errors. Do we know what the real cause is, and what is the best way to resolve these checksum errors?
This is the configuration of my dependency list (yaml input) file to `bazel-deps`:
```
options:
languages: ["java"]
resolverType: coursier
resolvers:
- id: mavencentral
type: default
strictVisibility: true
transitivity: runtime_deps
versionConflictPolicy: highest
thirdPartyDirectory: "dependencies/maven/"
```