...

Source file src/sigs.k8s.io/gateway-api/tools/tools.go

Documentation: sigs.k8s.io/gateway-api/tools

     1  // +build tools
     2  
     3  /*
     4  Copyright 2020 The Kubernetes Authors.
     5  
     6  Licensed under the Apache License, Version 2.0 (the "License");
     7  you may not use this file except in compliance with the License.
     8  You may obtain a copy of the License at
     9  
    10      http://www.apache.org/licenses/LICENSE-2.0
    11  
    12  Unless required by applicable law or agreed to in writing, software
    13  distributed under the License is distributed on an "AS IS" BASIS,
    14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15  See the License for the specific language governing permissions and
    16  limitations under the License.
    17  */
    18  
    19  // This package contains import references to packages required only for the
    20  // build process.
    21  // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
    22  package tools
    23  
    24  import (
    25  	_ "github.com/ahmetb/gen-crd-api-reference-docs"
    26  	_ "k8s.io/code-generator/cmd/client-gen"
    27  	_ "k8s.io/code-generator/cmd/deepcopy-gen"
    28  	_ "k8s.io/code-generator/cmd/informer-gen"
    29  	_ "k8s.io/code-generator/cmd/lister-gen"
    30  	_ "k8s.io/code-generator/cmd/register-gen"
    31  	_ "sigs.k8s.io/controller-runtime/pkg/scheme"
    32  	_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
    33  )
    34  

View as plain text