forked from operator-framework/java-operator-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
29 lines (25 loc) · 974 Bytes
/
go.mod
File metadata and controls
29 lines (25 loc) · 974 Bytes
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
module github.com/operator-framework/java-operator-plugins
go 1.19
require github.com/spf13/pflag v1.0.5
require (
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.19.0
k8s.io/apimachinery v0.25.0
sigs.k8s.io/kubebuilder/v3 v3.7.1-0.20220923133227-91a1afa8fe9e
)
require (
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/gobuffalo/flect v0.2.5 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/spf13/afero v1.6.0
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.12 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)