Bo Zhang
Bo Zhang
@JoshuaMorris This is kind of intentional. How do you open the url in the browser? By manually copy-paste the url, or right click - `Open in browser`? My understanding is...
Understood. This should be improved.
看stacktrace似乎是依赖包的声明方式不对。最好有可以复现的项目,否则只看stacktrace很难找到问题。
Thanks for your advice, Ben. Yes, I did consider this question. Question is, in Go, `build` is a directory which can contains ordinary go source files, that bothered me a...
@bmuschko I'm trying to solve this issue. I found `build` directory or file do exist in some repositories, for example [here](https://github.com/coreos/etcd/blob/master/build) and [here](https://github.com/fabiolb/fabio/tree/master/build). So we can't use `build` as default...
Yes, you're right, there's some issues about project-level GOPATH: https://youtrack.jetbrains.com/oauth?state=%2Fissue%2FGO-4118 Could you try global GOPATH and make your project structure conform to [go project layout](https://golang.org/cmd/go/#hdr-GOPATH_environment_variable) and try again?
And looks like IDEA 2017.2 no longer supports go plugin...https://github.com/go-lang-plugin-org/go-lang-idea-plugin/issues/2898
@kiview go plugin for IDEA is not maintained officially, I would suggest GoLand and global GOPATH.
> My suggestion would be GoLand and global GOPATH. Note the **global** GOPATH. @kiview I assume you're familiar with `GOPATH`. The way Gogradle implements project-level `GOPATH` is symlink, which in...
It's not. The GOPATH in the first screenshot exists in the project directory - it's a "project-level" GOPATH - i.e. it's only used by that project. If you take a...