From: ss412g Date: Thu, 4 Jul 2019 13:29:22 +0000 (+0300) Subject: Fix module names (1.0.7) X-Git-Tag: common/v1.0.7 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=e8369898a2769e44306e54239159cd56f5a527f1;p=ric-plt%2Fnodeb-rnib.git Fix module names (1.0.7) Change-Id: Id50bf9743aae4266f9e3e1ec95dd4c071603dd90 Signed-off-by: ss412g --- diff --git a/common/go.mod b/common/go.mod index ac78aa1..ac77bf2 100644 --- a/common/go.mod +++ b/common/go.mod @@ -1,4 +1,4 @@ -module gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/common +module gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common go 1.12 diff --git a/entities/go.mod b/entities/go.mod index acd2169..b7633da 100644 --- a/entities/go.mod +++ b/entities/go.mod @@ -1,4 +1,4 @@ -module gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/entities +module gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities go 1.12 diff --git a/reader/go.mod b/reader/go.mod index 0ded771..e6388b7 100644 --- a/reader/go.mod +++ b/reader/go.mod @@ -1,18 +1,18 @@ -module gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/reader +module gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/reader go 1.12 require ( gerrit.o-ran-sc.org/r/ric-plt/sdlgo v0.2.0 - gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/common v1.0.6 - gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/entities v1.0.6 + gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common v1.0.6 + gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities v1.0.6 github.com/golang/protobuf v1.3.1 github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.3.0 ) -replace gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/common => ../common +replace gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common => ../common -replace gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/entities => ../entities +replace gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities => ../entities replace gerrit.o-ran-sc.org/r/ric-plt/sdlgo => gerrit.o-ran-sc.org/r/ric-plt/sdlgo.git v0.2.0 diff --git a/reader/rNibReader.go b/reader/rNibReader.go index 41d1e6b..70bbdb2 100644 --- a/reader/rNibReader.go +++ b/reader/rNibReader.go @@ -17,8 +17,8 @@ package reader import ( - "gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/entities" - "gerrit.o-ran-sc.org/r/a/ric-plt/nodeb-rnib.git/common" + "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities" + "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common" "gerrit.o-ran-sc.org/r/ric-plt/sdlgo" "github.com/golang/protobuf/proto" "github.com/pkg/errors"