Skip to content

Commit bac0b1a

Browse files
authored
Remove dep from instructions in README
1 parent ecc0561 commit bac0b1a

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,7 @@ The IBM MQ client on which this library depends is supported on Linux and Window
134134

135135
1. Install Golang
136136
- This library has been validated with Golang v1.11.4 and v1.12.9. If you don't have Golang installed on your system you can [download it here](https://golang.org/doc/install) for MacOS, Linux or Windows
137-
2. Install 'dep' to manage the dependent packages
138-
- See [Installation instructions](https://github.com/golang/dep#installation) for details
137+
139138
3. Install the MQ Client library
140139
- If you have a full MQ server with a queue manager installed on your machine then you already have the client library
141140
- If you don't have a queue manager installed on your machine then you can download the "redistributable client" library for IBM MQ 9.1.1 CD or higher for [Linux](https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/redist/9.1.1.0-IBM-MQC-Redist-LinuxX64.tar.gz), [Windows](https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/redist/9.1.1.0-IBM-MQC-Redist-Win64.zip) or [MacOS](https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/mactoolkit/IBM-MQ-Toolkit-Mac-x64-9.1.1.0.tar.gz)
@@ -161,9 +160,8 @@ The IBM MQ client on which this library depends is supported on Linux and Window
161160
First you must configure your command console environment as described in the [mq-golang Getting Started instructions](https://github.com/ibm-messaging/mq-golang#getting-started) so that the necessary flags are set;
162161
```bash
163162
# Configure your Go environment variables (update to match your own setup)
164-
export GOROOT=/usr/local/go
165163
export GOPATH=/home/myuser/workspace
166-
export PATH=$PATH:$GOROOT/bin
164+
export PATH=$PATH:$GOPATH/bin
167165

168166
# Set the CGO flags to allow the compilation of the Go/C client interface
169167
export CGO_LDFLAGS_ALLOW="-Wl,-rpath.*"
@@ -177,12 +175,6 @@ export CGO_CFLAGS="-I$MQ_INSTALLATION_PATH/inc"
177175
export CGO_LDFLAGS="-L$MQ_INSTALLATION_PATH/lib64 -Wl,-rpath,$MQ_INSTALLATION_PATH/lib64"
178176
```
179177

180-
Download the Golang modules on which this project depends by running the dep command;
181-
```bash
182-
cd $GOPATH/src/github.com/ibm-messaging/mq-golang-jms20/
183-
dep ensure
184-
```
185-
186178
Confirm the settings are correct by compiling the MQ JMS Golang package, for example as follows; (no errors will be shown if successful)
187179
```bash
188180
cd $GOPATH/src/github.com/ibm-messaging/mq-golang-jms20/mqjms/

0 commit comments

Comments
 (0)