drpiqlzrh62917192 2019-03-25 11:35
浏览 67
已采纳

使用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?

  • 写回答

1条回答 默认 最新

  • duanhuang1967 2019-03-25 11:49
    关注
    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效