Hi, I am trying to verify the release and seeing failures when running `./gradlew :beam-test-tools:build` (it is run as part of the global build). The problem seems to be that it fails to cache one of the dependencies:
``` .gogradle/project_gopath/src/ github.com/apache/beam/.test-infra/tools/vendor/go.opencensus.io/trace/lrumap.go:18:2: cannot find package "github.com/hashicorp/golang-lru/simplelru" in any of: ... ``` It is able to find the `lrumap` and `simplelru` during the dependency resolution step, and I can see it mentioned in couple of artifacts produced by the `gogradle` plugin. But when it does `:installDepedencies` to actually copy them to `vendor` directory, this specific package is missing. This reproduces for me on a couple of different machines I tried, both on release and master branches. I can't seem to find a relevant recent change or pinpoint why exactly this happens in the plugin. Does anyone have a clue what can be causing this and how to fix it? Regards, Anton
