使用gop的dep时如何从供应商文件夹中排除内部依赖性

I have a project that depends on two other projects in the internal git repo. Which is already present in GOPATH. The problem I am facing is that, dep-init -gopath will still copy those projects under vendor/ directory.

Consequently the GoLand IDE I am using is confused where from the dependency is to be resolved. (I want it to resolve from GOPATH and not Vendor directory) If I delete the vendor/ directory, the program will run.

My Gopkg.toml file looks like:

[[constraint]]
  branch = "master"
  name = "github.com/sirupsen/logrus"

[[constraint]]
  branch = "master"
  name = "github.com/stretchr/testify"

[[constraint]]
  branch = "master"
  name = "gitlab.internal.com/vapi/goabc"

[[constraint]]
  branch = "master"
  name = "gitlab.internal.com/vapi/goxyz"

[prune]
  go-tests = true
  unused-packages = true

Where "gitlab.internal.com/vapi/goabc" and "gitlab.internal.com/vapi/goxyz" are the internal projects that this project depends on.

I tried adding the dependencies to ignored list [https://golang.github.io/dep/docs/Gopkg.toml.html#ignored]

But goxyz and goabc are still downloaded to vendor/ How can I get rid of them from the vendor directory?

ignored = [
  "gitlab.internal.com/vapi/goabc*",
  "gitlab.internal.com/vapi/goxyz*"
]

Did the trick, earlier I hadn't placed the wildcard and other package imports forced the dep to download the project anyway.