Skip to content

Commit 488814f

Browse files
yebyenKingdon Barrett
authored andcommitted
chore(modules): go mod init builder
I have no idea if this is a proper go.mod but it builds, runs ok with go mod tidy, and the tests are all passing now
1 parent f96d051 commit 488814f

File tree

3 files changed

+964
-0
lines changed

3 files changed

+964
-0
lines changed

go.mod

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
module builder
2+
3+
go 1.16
4+
5+
require (
6+
github.com/Azure/azure-sdk-for-go v60.3.0+incompatible // indirect
7+
github.com/Azure/go-autorest/autorest v0.11.23 // indirect
8+
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
9+
github.com/arschles/assert v0.0.0-20150820224400-6882f85ccdc7
10+
github.com/aws/aws-sdk-go v1.15.11
11+
github.com/blang/semver v3.0.1+incompatible // indirect
12+
github.com/codegangsta/cli v1.9.0
13+
github.com/coreos/go-oidc v0.0.0-20160504003935-5cf2aa52da8c // indirect
14+
github.com/coreos/go-systemd v0.0.0-20160527140244-4484981625c1 // indirect
15+
github.com/coreos/pkg v0.0.0-20160620232715-fa29b1d70f0b // indirect
16+
github.com/dnaeon/go-vcr v1.2.0 // indirect
17+
github.com/docker/distribution v2.7.1+incompatible
18+
github.com/docker/engine-api v0.4.0 // indirect
19+
github.com/docker/go-connections v0.4.0 // indirect
20+
github.com/docker/go-metrics v0.0.1 // indirect
21+
github.com/docker/go-units v0.4.0 // indirect
22+
github.com/emicklei/go-restful v1.1.4-0.20160814184150-89ef8af493ab // indirect
23+
github.com/gofrs/uuid v4.2.0+incompatible // indirect
24+
github.com/google/cadvisor v0.24.0-alpha1.0.20161021224824-a726d13de8cb // indirect
25+
github.com/gorilla/context v0.0.0-20140604161150-14f550f51af5 // indirect
26+
github.com/gorilla/mux v0.0.0-20140926153814-e444e69cbd2e // indirect
27+
github.com/goware/urlx v0.3.1 // indirect
28+
github.com/jonboulle/clockwork v0.0.0-20141017032234-72f9bd7c4e0c // indirect
29+
github.com/juju/ratelimit v0.0.0-20151125201925-77ed1c8a0121 // indirect
30+
github.com/kelseyhightower/envconfig v1.4.0
31+
github.com/kylelemons/godebug v1.1.0 // indirect
32+
github.com/ncw/swift v1.0.53 // indirect
33+
github.com/opencontainers/go-digest v1.0.0 // indirect
34+
github.com/pborman/uuid v0.0.0-20150603214016-ca53cad383ca
35+
github.com/smartystreets/goconvey v1.7.2 // indirect
36+
github.com/spf13/cobra v1.3.0 // indirect
37+
github.com/teamhephy/builder v2.13.7+incompatible
38+
github.com/teamhephy/controller-sdk-go v0.0.0-20181015154232-a1ffb4886a5f
39+
github.com/teamhephy/pkg v0.5.1-0.20180912202400-777f37a30108
40+
github.com/ugorji/go v0.0.0-20151028022000-f1f1a805ed36 // indirect
41+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
42+
google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8 // indirect
43+
gopkg.in/inf.v0 v0.9.0 // indirect
44+
gopkg.in/yaml.v2 v2.4.0
45+
k8s.io/client-go v0.0.0-20170211140036-e5fcd1eb6215 // indirect
46+
k8s.io/kubernetes v1.4.12
47+
)
48+
49+
// replace github.com/docker/distribution/digest => github.com/opencontainers/go-digest v0.0.0-20190228220655-ac19fd6e7483
50+
51+
replace github.com/docker/distribution => github.com/fluxcd/distribution v0.0.0-20190419185413-6c9727e5e5de

0 commit comments

Comments
 (0)