You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-26Lines changed: 23 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,16 +47,16 @@ Next, using [Git](https://git-scm.com/), clone this repository into `$GOPATH/src
47
47
48
48
### Installing Dependencies
49
49
50
-
QuickFIX/Go uses [govendor](https://github.com/kardianos/govendor) to manage the vendored dependencies. Install govendor with `go get`:
50
+
QuickFIX/Go uses [dep](https://github.com/golang/dep) to manage the vendored dependencies. Install dep with `go get`:
51
51
52
52
```sh
53
-
$ go get github.com/kardianos/govendor
53
+
$ go get -u github.com/golang/dep/cmd/dep
54
54
```
55
55
56
-
Run `govendor sync` to install the correct versioned dependencies into `vendor/, which Go 1.6+ automatically recognizes and loads.
56
+
Run `dep ensure` to install the correct versioned dependencies into `vendor/`, which Go 1.6+ automatically recognizes and loads.
57
57
58
58
```sh
59
-
$ $GOPATH/bin/govendor sync
59
+
$ $GOPATH/bin/dep ensure
60
60
```
61
61
62
62
**Note:** No vendored dependencies are included in the QuickFIX/Go source.
@@ -101,37 +101,34 @@ If you are developing QuickFIX/Go, there are a few tasks you might need to perfo
101
101
102
102
#### Adding a dependency
103
103
104
-
If you are adding a dependency, you will need update the govendor manifest in the same Pull Request as the code that depends on it. You should do this in a separate commit from your code, as this makes PR review easier and Git history simpler to read in the future.
104
+
If you are adding a dependency, you will need to update the dep manifest in the same Pull Request as the code that depends on it. You should do this in a separate commit from your code, as this makes PR review easier and Git history simpler to read in the future.
105
105
106
106
To add a dependency:
107
107
108
-
Assuming your work is on a branch called `my-feature-branch`, the steps look like this:
0 commit comments