-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
30 lines (24 loc) · 1.05 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// CHANGE_HERE - Change the module path below to reference packages correctly
module github.com/solace-iot-team/solace-axway-agent
go 1.16
require (
github.com/Axway/agent-sdk v1.1.13
github.com/deepmap/oapi-codegen v1.10.1
github.com/google/uuid v1.3.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.8.1
gopkg.in/yaml.v2 v2.4.0
)
replace (
// Option A:
// to bind against local version of agent-sdk (or fork of it) point to the project root
//github.com/Axway/agent-sdk v1.1.7 => ../agent-sdk
// Option B:
//github.com/Axway/agent-sdk v1.1.7 => github.com/solace-iot-team/agent-sdk SOL-8
// go mod tidy (will do the magic)
github.com/Axway/agent-sdk v1.1.13 => github.com/solace-iot-team/agent-sdk v1.0.20210617-0.20220429202008-a5f08e7648d9
//github.com/Axway/agent-sdk v1.1.13 => ../agent-sdk
github.com/Shopify/sarama => github.com/elastic/sarama v0.0.0-20191122160421-355d120d0970
github.com/dop251/goja => github.com/andrewkroh/goja v0.0.0-20190128172624-dd2ac4456e20
github.com/fsnotify/fsevents => github.com/fsnotify/fsevents v0.1.1
)