You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.go 778B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. //+build vendor
  5. package main
  6. // Libraries that are included to vendor utilities used during build.
  7. // These libraries will not be included in a normal compilation.
  8. import (
  9. // for lint
  10. _ "github.com/BurntSushi/toml"
  11. _ "github.com/mgechev/dots"
  12. _ "github.com/mgechev/revive/formatter"
  13. _ "github.com/mgechev/revive/lint"
  14. _ "github.com/mgechev/revive/rule"
  15. _ "github.com/mitchellh/go-homedir"
  16. // for embed
  17. _ "github.com/shurcooL/vfsgen"
  18. // for cover merge
  19. _ "golang.org/x/tools/cover"
  20. // for vet
  21. _ "gitea.com/jolheiser/gitea-vet"
  22. // for swagger
  23. _ "github.com/go-swagger/go-swagger/cmd/swagger"
  24. )