Skip to content

Commit

Permalink
Merge pull request #26 from terraform-providers/f/go-modules
Browse files Browse the repository at this point in the history
Switching to Go Modules
  • Loading branch information
tombuildsstuff authored Jan 22, 2019
2 parents 73fc678 + d32b733 commit fd65aa3
Show file tree
Hide file tree
Showing 636 changed files with 23,556 additions and 163,821 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ install:

script:
- make test
- make vendor-status
- make lint
- make website-test

Expand Down
13 changes: 6 additions & 7 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ PKG_NAME=azuread

#make sure we catch schema errors during testing
TF_SCHEMA_PANIC_ON_ERROR=1
GO111MODULE=on
GOFLAGS=-mod=vendor

default: build

Expand Down Expand Up @@ -35,16 +37,13 @@ goimport:

lint:
@echo "==> Checking source code against linters..."
gometalinter ./...
@gometalinter ./...

tools:
@echo "==> installing required tooling..."
go get -u github.com/kardianos/govendor
go get -u github.com/alecthomas/gometalinter
gometalinter --install

vendor-status:
@govendor status
@sh "$(CURDIR)/scripts/gogetcookie.sh"
GO111MODULE=off go get -u github.com/alecthomas/gometalinter
GO111MODULE=off gometalinter --install

test-compile:
@if [ "$(TEST)" = "./..." ]; then \
Expand Down
42 changes: 42 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
module github.com/terraform-providers/terraform-provider-azuread

require (
contrib.go.opencensus.io/exporter/ocagent v0.4.2 // indirect
github.com/Azure/azure-sdk-for-go v24.1.0+incompatible
github.com/Azure/go-autorest v11.2.8+incompatible
github.com/agext/levenshtein v1.2.1 // indirect
github.com/apparentlymart/go-cidr v0.0.0-20170418151526-7e4b007599d4 // indirect
github.com/apparentlymart/go-textseg v0.0.0-20170531203952-b836f5c4d331 // indirect
github.com/aws/aws-sdk-go v1.8.34 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/fsouza/go-dockerclient v0.0.0-20160427172547-1d4f4ae73768 // indirect
github.com/go-ini/ini v1.23.1 // indirect
github.com/google/uuid v0.0.0-20170814143639-7e072fc3a7be
github.com/hashicorp/go-azure-helpers v0.0.0-20181211121309-38db96513363
github.com/hashicorp/go-cleanhttp v0.0.0-20170211013415-3573b8b52aa7 // indirect
github.com/hashicorp/go-getter v0.0.0-20180226183729-64040d90d4ab // indirect
github.com/hashicorp/go-hclog v0.0.0-20170903163258-8105cc0a3736 // indirect
github.com/hashicorp/go-plugin v0.0.0-20170816151819-a5174f84d7f8 // indirect
github.com/hashicorp/go-uuid v0.0.0-20160120003506-36289988d83c
github.com/hashicorp/go-version v0.0.0-20161031182605-e96d38404026 // indirect
github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f // indirect
github.com/hashicorp/hcl2 v0.0.0-20180227155456-998a3053e207 // indirect
github.com/hashicorp/hil v0.0.0-20170512213305-fac2259da677 // indirect
github.com/hashicorp/logutils v0.0.0-20150609070431-0dc08b1671f3 // indirect
github.com/hashicorp/terraform v0.11.9
github.com/hashicorp/yamux v0.0.0-20160720233140-d1caa6c97c9f // indirect
github.com/jmespath/go-jmespath v0.0.0-20160803190731-bd40a432e4c7 // indirect
github.com/mitchellh/cli v1.0.0 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
github.com/mitchellh/hashstructure v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/ulikunitz/xz v0.5.4 // indirect
github.com/zclconf/go-cty v0.0.0-20180227163247-7166230c635f // indirect
golang.org/x/sys v0.0.0-20190121090251-770c60269bf0 // indirect
google.golang.org/genproto v0.0.0-20190111180523-db91494dd46c // indirect
google.golang.org/grpc v1.17.0 // indirect
)
168 changes: 168 additions & 0 deletions go.sum

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

Loading

0 comments on commit fd65aa3

Please sign in to comment.