mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* export GOFLAGS=-mod=vendor in Makefile * use go get instead of go install for installing test dependencies * use tools approach to manage testing dependencies When using this apporoach we can make sure that all dependencies in a proper version are vendored with the source code. * go mod vendor * add wwhrd expection for github.com/hinshun/vt10x
43 lines
1.6 KiB
YAML
43 lines
1.6 KiB
YAML
---
|
|
blacklist:
|
|
# https://www.apache.org/licenses/GPL-compatibility.html
|
|
- GPL-2.0
|
|
|
|
whitelist:
|
|
- Apache-2.0
|
|
- MIT
|
|
- NewBSD
|
|
- FreeBSD
|
|
- ISC
|
|
- MPL-2.0
|
|
- BSD-3-Clause
|
|
- BSD-2-Clause
|
|
- MPL-2.0-no-copyleft-exception
|
|
- EPL-2.0
|
|
|
|
exceptions:
|
|
# wwhrd currently does not detect ISC which is compatible with Odo so, add it under exceptions to avoid errors due to it being not recognised
|
|
- github.com/davecgh/go-spew/spew/...
|
|
# wwhrd currently does not detect ISC which is compatible with Odo so, add it under exceptions to avoid errors due to it being not recognised
|
|
# we use this file in cli documentation
|
|
- github.com/olekukonko/tablewriter
|
|
# gocertifi contains CA bundle and SSL certs which is required for OpenShift
|
|
# This is OpenShift dependency, ODO do not use this directly
|
|
- github.com/certifi/gocertifi
|
|
# go-digest contains common digest package used across the container ecosystem
|
|
# This is OpenShift dependency, ODO do not use this directly
|
|
- github.com/opencontainers/go-digest
|
|
# MIT licence - wwhrd is not detecting it correctly
|
|
- github.com/ghodss/yaml
|
|
# Apache License 2.0 - wwhrd is not detecting it correctly
|
|
- github.com/prometheus/common/...
|
|
# Apache License 2.0 - wwhrd is not detecting it correctly
|
|
- github.com/docker/spdystream/...
|
|
# BSD licence - wwhrd is not detecting it correctly
|
|
- github.com/gogo/protobuf/...
|
|
# BSD licence - wwhrd is not detecting it correctly
|
|
- github.com/golang/protobuf/...
|
|
# MIT licence - wwhrd is not detecting it correctly
|
|
- sigs.k8s.io/yaml/...
|
|
# MIT licence - wwhrd is not detecting it correctly
|
|
- github.com/hinshun/vt10x |