Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

samples: move go.mod into samples root, making samples its own module #2057

Merged
merged 3 commits into from
May 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions internal/testing/alldeps
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ github.com/google/go-cmp
github.com/google/go-github
github.com/google/go-querystring
github.com/google/martian
github.com/google/subcommands
github.com/google/uuid
github.com/google/wire
github.com/googleapis/gax-go
Expand Down Expand Up @@ -77,7 +76,7 @@ gocloud.dev
gocloud.dev/internal/cmd/gocdk
gocloud.dev/internal/contributebot
gocloud.dev/internal/website
gocloud.dev/samples/appengine/helloworld
gocloud.dev/samples
golang.org/x/crypto
golang.org/x/net
golang.org/x/oauth2
Expand All @@ -91,6 +90,5 @@ google.golang.org/api
google.golang.org/appengine
google.golang.org/genproto
google.golang.org/grpc
gopkg.in/pipe.v2
gopkg.in/square/go-jose.v2
pack.ag/amqp
7 changes: 0 additions & 7 deletions samples/appengine/go.mod

This file was deleted.

19 changes: 19 additions & 0 deletions samples/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module gocloud.dev/samples

require (
contrib.go.opencensus.io/exporter/stackdriver v0.11.0
git.apache.org/thrift.git v0.12.0 // indirect
github.com/Azure/azure-pipeline-go v0.1.9
github.com/Azure/azure-storage-blob-go v0.6.0
github.com/aws/aws-sdk-go v1.19.16
github.com/go-sql-driver/mysql v1.4.1
github.com/google/subcommands v1.0.1
github.com/google/wire v0.2.1
github.com/gorilla/mux v1.7.1
go.opencensus.io v0.21.0
gocloud.dev v0.13.0
google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7
gopkg.in/pipe.v2 v2.0.0-20140414041502-3c2ca4d52544
)

replace gocloud.dev => ../
Loading