435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
19 lines
582 B
Go
19 lines
582 B
Go
//+build tools
|
|
|
|
// Package tools anonymously imports packages of tools used to build nomad.
|
|
// See the GNUMakefile for 'go get` commands.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/a8m/tree/cmd/tree"
|
|
_ "github.com/client9/misspell/cmd/misspell"
|
|
_ "github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs"
|
|
_ "github.com/hashicorp/hcl/v2/cmd/hclfmt"
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/hashicorp/go-bindata/go-bindata"
|
|
_ "github.com/hashicorp/go-msgpack/codec/codecgen"
|
|
_ "gotest.tools/gotestsum"
|
|
)
|
|
|