forked from arquillian/ike-prow-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGopkg.toml
83 lines (70 loc) · 2.01 KB
/
Gopkg.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# 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
required = [
"github.com/shurcooL/githubql",
"github.com/satori/go.uuid",
"k8s.io/test-infra/prow/cmd/hook"
]
# We need explicit UUID version due to conflicts with k8s code
[[constraint]]
name = "github.com/satori/go.uuid"
version = "1.1.0"
# Using this latest tag until a new version containing the
# commit cc3c003dafcc1261f914368c8bae8c7be1a6e2dc is released (so if anything newer than v15.0.0 is out)
[[constraint]]
name = "github.com/google/go-github"
version = "21.0.0"
[[constraint]]
name = "k8s.io/test-infra"
revision = "2f3ad698ffcff53f881d3292a1b3da894bf1d5f7"
# we need explicit shurcooL version due to conflicts with test-infra code
[[constraint]]
name = "github.com/shurcooL/githubql"
revision = "2f1beebeca3383d6367f59e5f091dd4fe1c856de"
[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.3.0"
[[constraint]]
name = "github.com/evalphobia/logrus_sentry"
version = "0.8.0"
[[override]]
name = "github.com/prometheus/client_golang"
version = "0.9.2"
[[constraint]]
name = "github.com/onsi/gomega"
version = "1.4.3"
[[constraint]]
name = "github.com/onsi/ginkgo"
version = "1.7.0"
# Apply workaround from https://github.com/golang/dep/issues/1799
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
[[constraint]]
name = "gopkg.in/h2non/gock.v1"
version = "1.0.12"
[prune]
non-go = true
go-tests = true
unused-packages = true