This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate go modules to top level directory
This allows developers who utilize things such as language server protocol to easily resolve package level signatures across similar modules that make up the project. Fixes #557 Signed-off-by: Adam Stokes <[email protected]>
- Loading branch information
1 parent
ae5b9fe
commit abe2d1f
Showing
7 changed files
with
1,132 additions
and
1,058 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 +1,26 @@ | ||
module github.com/elastic/e2e-testing | ||
module github.com/elasticsearch/e2e-testing | ||
|
||
go 1.14 | ||
|
||
require ( | ||
github.com/Flaque/filet v0.0.0-20201012163910-45f684403088 | ||
github.com/Jeffail/gabs/v2 v2.6.0 | ||
github.com/cenkalti/backoff/v4 v4.1.0 | ||
github.com/docker/docker v20.10.5+incompatible | ||
github.com/elastic/e2e-testing/cli v0.0.0-20210329121511-ae5b9fe35c35 | ||
github.com/elastic/e2e-testing/e2e v0.0.0-20210329121511-ae5b9fe35c35 | ||
github.com/elastic/go-elasticsearch/v8 v8.0.0-20210317102009-a9d74cec0186 | ||
github.com/gobuffalo/packr/v2 v2.8.1 | ||
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/testcontainers/testcontainers-go v0.10.0 | ||
go.elastic.co/apm v1.11.0 | ||
go.elastic.co/apm/module/apmelasticsearch v1.11.0 | ||
gopkg.in/src-d/go-git.v4 v4.13.1 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
replace github.com/cucumber/godog => github.com/cucumber/godog v0.8.1 |
Oops, something went wrong.