platform_build/tools/compliance/go.work
Cole Faust 9a6e468646 Update go.mod and go.work for go 1.22
Go 1.22 is more strict about GOPROXY=off, so we need to update the
go.work file to point at local copies of dependencies.

Bug: 330574836
Test: Presubmits
Change-Id: I37dbc821f138fe8977636316ebe3e7986ccdfa0e
2024-05-23 16:28:15 -07:00

18 lines
514 B
Text

go 1.22
use (
.
../../../../build/blueprint
../../../../build/soong
../../../../external/go-cmp
../../../../external/golang-protobuf
../../../../external/spdx-tools
)
replace (
github.com/google/blueprint v0.0.0 => ../../../../build/blueprint
android/soong v0.0.0 => ../../../../build/soong
github.com/google/go-cmp v0.0.0 => ../../../../external/go-cmp
google.golang.org/protobuf v0.0.0 => ../../../../external/golang-protobuf
github.com/spdx/tools-golang v0.0.0 => ../../../../external/spdx-tools
)