-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 733 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 733 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
module github.com/palantir/go-java-launcher
go 1.26.0
require (
github.com/mitchellh/go-ps v1.0.0
github.com/palantir/godel/pkg/products/v2 v2.0.0
github.com/palantir/pkg/cli v1.2.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.11.1
gopkg.in/validator.v2 v2.0.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/palantir/pkg v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/term v0.41.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)