From d31bad019b71bed702a24bf16b93cdea4b4a1fca Mon Sep 17 00:00:00 2001 From: Frank Martinez Date: Mon, 13 May 2019 22:53:36 -0400 Subject: [PATCH] update go.mod --- activity/aggregate/descriptor.json | 2 +- activity/aggregate/go.mod | 10 ++++++++++ activity/filter/descripor.json | 2 +- activity/filter/go.mod | 10 ++++++++++ descriptor.json | 2 +- go.mod | 4 +--- go.sum | 11 ++++------- 7 files changed, 28 insertions(+), 13 deletions(-) create mode 100644 activity/aggregate/go.mod create mode 100644 activity/filter/go.mod diff --git a/activity/aggregate/descriptor.json b/activity/aggregate/descriptor.json index d508cd0..ccf5e94 100755 --- a/activity/aggregate/descriptor.json +++ b/activity/aggregate/descriptor.json @@ -1,7 +1,7 @@ { "name": "flogo-aggregate", "type": "flogo:activity", - "version": "0.0.1", + "version": "0.2.0", "title": "Aggregate", "description": "Simple Aggregate Activity", "homepage": "https://github.com/project-flogo/stream/tree/master/activity/aggregate", diff --git a/activity/aggregate/go.mod b/activity/aggregate/go.mod new file mode 100644 index 0000000..ee6fb58 --- /dev/null +++ b/activity/aggregate/go.mod @@ -0,0 +1,10 @@ +module github.com/project-flogo/stream/activity/aggregate + +go 1.12 + +require ( + github.com/pkg/errors v0.8.1 // indirect + github.com/project-flogo/core v0.9.0 + github.com/project-flogo/stream v0.2.0 + github.com/stretchr/testify v1.3.0 +) diff --git a/activity/filter/descripor.json b/activity/filter/descripor.json index 7161331..4141010 100755 --- a/activity/filter/descripor.json +++ b/activity/filter/descripor.json @@ -1,7 +1,7 @@ { "name": "flogo-filter", "type": "flogo:activity", - "version": "0.0.1", + "version": "0.2.0", "title": "Filter", "description": "Simple Filter Activity", "homepage": "https://github.com/project-flogo/stream/tree/master/activity/filter", diff --git a/activity/filter/go.mod b/activity/filter/go.mod new file mode 100644 index 0000000..5080e5a --- /dev/null +++ b/activity/filter/go.mod @@ -0,0 +1,10 @@ +module github.com/project-flogo/stream/activity/filter + +go 1.12 + +require ( + github.com/pkg/errors v0.8.1 // indirect + github.com/project-flogo/core v0.9.0 + github.com/project-flogo/stream v0.2.0 + github.com/stretchr/testify v1.3.0 +) diff --git a/descriptor.json b/descriptor.json index 34cfda1..8af5f9d 100644 --- a/descriptor.json +++ b/descriptor.json @@ -1,7 +1,7 @@ { "name": "stream", "type": "flogo:action", - "version": "0.0.1", + "version": "0.2.0", "title": "Flogo Stream", "description": "Simple Stream Action", "homepage": "https://github.com/project-flogo/stream/tree/master", diff --git a/go.mod b/go.mod index ab0e811..6b4794e 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/project-flogo/stream require ( github.com/pkg/errors v0.8.1 // indirect - github.com/project-flogo/core v0.9.0-rc.1 + github.com/project-flogo/core v0.9.0 github.com/stretchr/testify v1.3.0 - go.uber.org/atomic v1.3.2 // indirect - go.uber.org/multierr v1.1.0 // indirect ) diff --git a/go.sum b/go.sum index a576543..6a98caa 100644 --- a/go.sum +++ b/go.sum @@ -1,18 +1,15 @@ -github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/project-flogo/core v0.9.0-rc.1 h1:0dALJoxHI/T4Ao340cHfNg5Yf5uM/bT4Y7u+5UYXfIQ= -github.com/project-flogo/core v0.9.0-rc.1/go.mod h1:dzmBbQfNNC0g0KClKYQxxGJLe53MHafg75Vhmw2TW8U= -github.com/stretchr/objx v0.1.0 h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4= +github.com/project-flogo/core v0.9.0 h1:/iR4m5L0zj5SuqLtDDZIRyvrvG8TxwxdM0n8ZURo1I4= +github.com/project-flogo/core v0.9.0/go.mod h1:QGWi7TDLlhGUaYH3n/16ImCuulbEHGADYEXyrcHhX7U= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/xeipuuv/gojsonschema v1.1.0/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= -go.uber.org/atomic v1.3.2 h1:2Oa65PReHzfn29GpvgsYwloV9AVFHPDk8tYxt2c2tr4= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.4.0 h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/multierr v1.1.0 h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/zap v1.9.1 h1:XCJQEf3W6eZaVwhRBof6ImoYGJSITeKWsyeh3HFu/5o=