2024-09-06 12:58:50 -05:00
|
|
|
go 1.23.1
|
2024-02-23 07:54:24 -06:00
|
|
|
|
2024-08-08 15:51:17 -05:00
|
|
|
// The `skip:golangci-lint` comment tag is used to exclude the package from the `golangci-lint` GitHub Action.
|
|
|
|
// The module at the root of the repo (`.`) is excluded because ./pkg/... is included manually in the `golangci-lint` configuration.
|
|
|
|
|
2024-02-23 07:54:24 -06:00
|
|
|
use (
|
2024-08-08 15:51:17 -05:00
|
|
|
. // skip:golangci-lint
|
2024-09-13 15:27:40 -05:00
|
|
|
./apps/playlist
|
2024-11-19 06:01:40 -06:00
|
|
|
./kindsv2
|
2024-08-13 14:28:17 -05:00
|
|
|
./pkg/aggregator
|
2024-02-23 14:15:43 -06:00
|
|
|
./pkg/apimachinery
|
|
|
|
./pkg/apiserver
|
2024-06-14 11:35:30 -05:00
|
|
|
./pkg/build
|
2024-08-08 15:51:17 -05:00
|
|
|
./pkg/build/wire // skip:golangci-lint
|
2024-03-11 11:22:33 -05:00
|
|
|
./pkg/promlib
|
2024-08-02 07:35:18 -05:00
|
|
|
./pkg/semconv
|
2024-08-21 13:32:01 -05:00
|
|
|
./pkg/storage/unified/apistore
|
2024-06-20 08:11:21 -05:00
|
|
|
./pkg/storage/unified/resource
|
2024-08-08 15:51:17 -05:00
|
|
|
./pkg/util/xorm // skip:golangci-lint
|
2024-02-23 07:54:24 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// when we release xorm we would like to release it like github.com/grafana/grafana/pkg/util/xorm
|
|
|
|
// but we don't want to change all the imports. so we use replace to handle this situation
|
|
|
|
replace xorm.io/xorm => ./pkg/util/xorm
|
2024-09-13 15:27:40 -05:00
|
|
|
|
|
|
|
replace github.com/getkin/kin-openapi => github.com/getkin/kin-openapi v0.125.0
|
2024-09-30 11:50:35 -05:00
|
|
|
|
|
|
|
replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.25.1-0.20240930132144-b5e64e81e8d3
|
2024-11-04 02:55:29 -06:00
|
|
|
|
|
|
|
replace github.com/crewjam/saml => github.com/grafana/saml v0.4.15-0.20240917091248-ae3bbdad8a56
|
2024-11-06 10:29:43 -06:00
|
|
|
|
|
|
|
replace github.com/goccy/go-json => github.com/grafana/go-json v0.0.0-20241106155216-71a03f133f5c
|