mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

github.com/google/addlicense v0.0.0-20210428195630-6d92264d7170 -> v1.0.0 github.com/gordonklaus/ineffassign v0.0.0-20200809085317-e36bfde3bb78 -> v0.0.0-20210914165742-4cc7213b9bc8 github.com/grpc-ecosystem/grpc-gateway v1.14.6 -> v1.16.0 github.com/hexfusion/schwag v0.0.0-20170606222847-b7d0fc9aadaa -> v0.0.0-20211117114134-3ceb0191ccbf github.com/mgechev/revive v1.0.2 -> v1.2.0 github.com/mikefarah/yq/v3 v3.0.0-20201125113350-f42728eef735 -> v4.24.2 gotest.tools v2.2.0+incompatible -> v3.1.0 gotest.tools/gotestsum v0.3.5 -> v1.7.0 honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc -> v0.3.0 mvdan.cc/unparam v0.0.0-20200501210554-b37ab49443f7 -> v0.0.0-20220316160445-06cc5682983b Signed-off-by: Manuel Rüger <manuel@rueg.eu>
43 lines
1.5 KiB
Go
43 lines
1.5 KiB
Go
// Copyright 2016 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//go:build tools
|
|
// +build tools
|
|
|
|
// This file implements that pattern:
|
|
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
// for etcd. Thanks to this file 'go mod tidy' does not removes dependencies.
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/alexkohler/nakedret"
|
|
_ "github.com/chzchzchz/goword"
|
|
_ "github.com/coreos/license-bill-of-materials"
|
|
_ "github.com/google/addlicense"
|
|
_ "github.com/gordonklaus/ineffassign"
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway"
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger"
|
|
_ "github.com/gyuho/gocovmerge"
|
|
_ "github.com/hexfusion/schwag"
|
|
_ "github.com/mdempsky/unconvert"
|
|
_ "github.com/mgechev/revive"
|
|
_ "github.com/mikefarah/yq/v4"
|
|
_ "go.etcd.io/protodoc"
|
|
_ "gotest.tools/v3"
|
|
_ "gotest.tools/gotestsum"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
_ "mvdan.cc/unparam"
|
|
)
|