forked from SAP/stewardci-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
47 lines (44 loc) · 2.17 KB
/
go.mod
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
module github.com/SAP/stewardci-core
go 1.12
require (
cloud.google.com/go v0.48.0 // indirect
contrib.go.opencensus.io/exporter/prometheus v0.1.0 // indirect
contrib.go.opencensus.io/exporter/stackdriver v0.12.8 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
github.com/ghodss/yaml v1.0.0
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect
github.com/golang/mock v1.3.1
github.com/google/go-containerregistry v0.0.0-20191115225042-f8574ec722f4 // indirect
github.com/googleapis/gnostic v0.3.1 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/imdario/mergo v0.3.8 // indirect
github.com/lithammer/dedent v1.1.0
github.com/markbates/inflect v1.0.4 // indirect
github.com/mattbaird/jsonpatch v0.0.0-20171005235357-81af80346b1a // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.2.1
github.com/tektoncd/pipeline v0.7.0
go.opencensus.io v0.22.2 // indirect
go.uber.org/zap v1.13.0 // indirect
golang.org/x/crypto v0.0.0-20191117063200-497ca9f6d64f // indirect
golang.org/x/net v0.0.0-20191116160921-f9c825593386 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 // indirect
google.golang.org/api v0.14.0 // indirect
gopkg.in/yaml.v2 v2.2.5 // indirect
gotest.tools v2.2.0+incompatible
k8s.io/api v0.0.0-20191004102349-159aefb8556b
k8s.io/apimachinery v0.0.0-20191004074956-c5d2f014d689
k8s.io/client-go v11.0.1-0.20191029005444-8e4128053008+incompatible
k8s.io/utils v0.0.0-20191114200735-6ca3b61696b6 // indirect
knative.dev/pkg v0.0.0-20191107185656-884d50f09454
)
replace (
github.com/tektoncd/pipeline => github.com/tektoncd/pipeline v0.7.0
k8s.io/api => k8s.io/api v0.0.0-20191004102349-159aefb8556b // kubernetes-1.14.9
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191004074956-c5d2f014d689 // kubernetes-1.14.9
k8s.io/client-go => k8s.io/client-go v11.0.1-0.20191029005444-8e4128053008+incompatible // kubernetes-1.14.9
knative.dev/pkg => knative.dev/pkg v0.0.0-20191107185656-884d50f09454 // release-0.10
)