Skip to content

Commit b8c1fed

Browse files
authored
Merge pull request #125 from JameelB/AEROGEAR-2856-move-to-dep
[AEROGEAR-2856] use dep for dependency management
2 parents 8e8003b + 7a02e8e commit b8c1fed

File tree

5,271 files changed

+61187
-2086434
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,271 files changed

+61187
-2086434
lines changed

Gopkg.lock

Lines changed: 658 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[[constraint]]
2+
branch = "master"
3+
name = "github.com/aerogear/mobile-crd-client"
4+
5+
[[constraint]]
6+
name = "github.com/pkg/errors"
7+
version = "0.8.0"
8+
9+
[[constraint]]
10+
name = "github.com/satori/go.uuid"
11+
version = "1.1.0"
12+
13+
[[constraint]]
14+
name = "github.com/spf13/cobra"
15+
version = "0.0.1"
16+
17+
[[constraint]]
18+
name = "github.com/spf13/pflag"
19+
version = "1.0.0"
20+
21+
[[constraint]]
22+
name = "k8s.io/client-go"
23+
version = "4.0.0"
24+
25+
[prune]
26+
go-tests = true
27+
unused-packages = true
28+
29+
[[override]]
30+
name = "github.com/goreleaser/goreleaser"
31+
version = "0.58.0"

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ podTemplate(label: 'mobile-cli-go', cloud: "openshift", containers: [goSlaveCont
3737
}
3838

3939
stage ("Setup") {
40-
sh "glide install"
40+
sh "go get github.com/golang/dep/cmd/dep"
41+
sh "dep ensure"
4142
sh "go get golang.org/x/tools/cmd/cover"
4243
sh "go get github.com/mattn/goveralls"
4344
}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LDFLAGS=-ldflags "-w -s -X main.Version=${TAG}"
1010
.PHONY: setup
1111
setup:
1212
@go get github.com/kisielk/errcheck
13-
glide get github.com/goreleaser/goreleaser\#v0.58.0
13+
dep ensure --add github.com/goreleaser/goreleaser
1414

1515
.PHONY: build
1616
build: setup check build_binary

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Or, to install a specific version:
3737

3838
### Pre-requisites
3939
- Have a local Kubernetes or OpenShift cluster with mobile clients and services available via minikube, [mobile core installer](https://github.com/aerogear/mobile-core/blob/master/docs/walkthroughs/local-setup.adoc) or [minishift](https://github.com/aerogear/minishift-mobilecore-addon).
40-
- Install [glide](https://github.com/Masterminds/glide)
40+
- Install [dep](https://golang.github.io/dep/docs/installation.html)
4141
- Install [go](https://golang.org/doc/install)
4242

4343
### Clone this repository
@@ -51,7 +51,7 @@ git clone https://github.com/aerogear/mobile-cli
5151
### Build the CLI Binary
5252

5353
```bash
54-
glide install
54+
dep ensure
5555
make build
5656
```
5757

glide.lock

Lines changed: 0 additions & 315 deletions
This file was deleted.

0 commit comments

Comments
 (0)