File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 41
41
cat ../plugin_store_pg.go.temp > plugin_store_pg.go
42
42
43
43
go clean --modcache
44
- go get -u github.com/polaris-contrib/polaris- store-postgresql@${store_pg_plugin_version}
44
+ go get -u github.com/polaris-contrib/store-postgresql@${store_pg_plugin_version}
45
45
go mod tidy
46
46
47
47
make build VERSION=${polaris_server_tag}
Original file line number Diff line number Diff line change 1
- module github.com/polaris-contrib/polaris- store-postgresql
1
+ module github.com/polaris-contrib/store-postgresql
2
2
3
- go 1.19
3
+ go 1.18
4
4
5
5
require github.com/smartystreets/goconvey v1.8.0
6
6
@@ -34,5 +34,5 @@ require (
34
34
golang.org/x/text v0.9.0 // indirect
35
35
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
36
36
google.golang.org/grpc v1.55.0 // indirect
37
- google.golang.org/protobuf v1.30.0 // indirect
37
+ google.golang.org/protobuf v1.30.0
38
38
)
Original file line number Diff line number Diff line change 35
35
go fmt ./...
36
36
37
37
find . -name " *.go" -type f | grep -v .pb.go | grep -v test/tools/tools.go | grep -v ./plugin.go |
38
- xargs -I {} ./goimports-reviser -rm-unused -format {} -local github.com/polarismesh/specification -project-name github.com/polaris-contrib/polaris- store-postgresql
38
+ xargs -I {} ./goimports-reviser -rm-unused -format {} -local github.com/polarismesh/specification -project-name github.com/polaris-contrib/store-postgresql
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
"github.com/polarismesh/polaris/common/log"
22
22
"github.com/polarismesh/polaris/store"
23
23
24
- "github.com/polaris-contrib/polaris- store-postgresql/store/postgresql"
24
+ "github.com/polaris-contrib/store-postgresql/store/postgresql"
25
25
)
26
26
27
27
func init () {
Original file line number Diff line number Diff line change 18
18
package main
19
19
20
20
import (
21
- _ "github.com/polaris-contrib/polaris- store-postgresql"
21
+ _ "github.com/polaris-contrib/store-postgresql"
22
22
)
You can’t perform that action at this time.
0 commit comments