Hi Beam developers, I tried to build Go SDK on the master branch, but encountered the following error.
``` $ ./gradlew :sdks:go:resolveBuildDependencies (snip) FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':sdks:go:resolveBuildDependencies'. > Exception in resolution, message is: Cannot resolve dependency:github.com/coreos/etcd: commit='11214aa33bf5a47d3d9d8dafe0f6b97237dfe921', urls=[https://github.com/co reos/etcd.git, g...@github.com:coreos/etcd.git] Resolution stack is: +- github.com/apache/beam/sdks/go ``` Replacing the "coreos" organizations with "etcd-io" in GitHub URLs in gogradle.lock seems to work. ``` $ sed -i s,coreos/etcd,etcd-io/etcd,g sdks/go/gogradle.lock $ ./gradlew :sdks:go:resolveBuildDependencies (snip) BUILD SUCCESSFUL in 4s 2 actionable tasks: 2 executed ``` But I'm not sure whether it's a valid solution, since I'm not familiar with Gogradle and it seems that gogradle.lock shouldn't be edited directly according to its header comment. Is the above approach valid, or is there a more proper way to solve this problem...? Kengo Seki <sek...@apache.org>