diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-10-31 14:58:09 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-10-31 14:58:14 -0700 |
commit | 1e60c8f1bb01c8304a44948d890ade1e37fd2c6b (patch) | |
tree | 0d020225d3817ac705f8bd4b488b5f890a85ce51 /src/k8splugin/Gopkg.toml | |
parent | 3fec487b6db21303516380dbd7635978164bb8a7 (diff) |
Migrate from dep to go mod
Migrate from dep to go mod which is
native package management functionality in golang 1.11
Issue-ID: MULTICLOUD-392
Change-Id: I9a94cb38bd230738d7d0e586e6956b7a46472dd7
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src/k8splugin/Gopkg.toml')
-rw-r--r-- | src/k8splugin/Gopkg.toml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/k8splugin/Gopkg.toml b/src/k8splugin/Gopkg.toml deleted file mode 100644 index 219b502d..00000000 --- a/src/k8splugin/Gopkg.toml +++ /dev/null @@ -1,46 +0,0 @@ -# Gopkg.toml example -# -# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md -# for detailed Gopkg.toml documentation. -# -# required = ["github.com/user/thing/cmd/thing"] -# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] -# -# [[constraint]] -# name = "github.com/user/project" -# version = "1.0.0" -# -# [[constraint]] -# name = "github.com/user/project2" -# branch = "dev" -# source = "github.com/myfork/project2" -# -# [[override]] -# name = "github.com/x/y" -# version = "2.4.0" -# -# [prune] -# non-go = false -# go-tests = true -# unused-packages = true - - -[[constraint]] - branch = "master" - name = "k8s.io/api" - -[[constraint]] - name = "k8s.io/apimachinery" - version = "kubernetes-1.10.3" - -[[constraint]] - name = "k8s.io/client-go" - version = "7.0.0" - -[prune] - go-tests = true - unused-packages = true - -[[constraint]] - name = "github.com/pkg/errors" - version = "0.8.0" |