-
-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use VCS module paths in Go reference from Gherkin => Messages (#1608)
* Also rebuild go packages if go.mod changes * Attempt to use a VCS path to reference gherkin->messages in Go * Point go module paths to monorepo Ref #1550 Co-authored-by: Aurelien Reeves <[email protected]> * Update Go module refs from gherkin->messages Ref: #1550 NB: Until #1608 has been merged to main, we're using a temporary branch ref in go.mod. This will need to be removed before this PR is merged. * Update Go module refs from demo-formatter -> messages Ref #1550 * Update Go module refs from json-formatter -> messages Ref #1550 * Fix Go module self-references * Use main branch again in Go module refs Co-authored-by: Aurelien Reeves <[email protected]>
- Loading branch information
1 parent
4ecd6cf
commit a2ff65d
Showing
23 changed files
with
30 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module github.com/cucumber/common/demo-formatter/go | ||
|
||
require ( | ||
github.com/cucumber/messages-go/v16 v16.0.1 | ||
github.com/cucumber/common/messages/go/v16 v16.0.0 | ||
github.com/stretchr/testify v1.7.0 | ||
) | ||
|
||
replace github.com/cucumber/messages-go/v16 => ../../messages/go | ||
replace github.com/cucumber/common/messages/go/v16 => ../../messages/go | ||
|
||
go 1.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module github.com/cucumber/common/gherkin/go/v19 | ||
|
||
require ( | ||
github.com/cucumber/messages-go/v16 v16.0.1 | ||
github.com/cucumber/common/messages/go/v16 v16.0.0 | ||
github.com/stretchr/testify v1.7.0 | ||
) | ||
|
||
replace github.com/cucumber/messages-go/v16 => ../../messages/go | ||
replace github.com/cucumber/common/messages/go/v16 => ../../messages/go | ||
|
||
go 1.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module github.com/cucumber/common/json-formatter/go/v18 | ||
|
||
replace github.com/cucumber/messages-go/v16 => ../../messages/go | ||
replace github.com/cucumber/common/messages/go/v16 => ../../messages/go | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/cucumber/messages-go/v16 v16.0.1 | ||
github.com/cucumber/common/messages/go/v16 v16.0.1 | ||
github.com/onsi/ginkgo v1.16.4 | ||
github.com/onsi/gomega v1.13.0 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters