Skip to content

Commit

Permalink
Update Azure library dependencies
Browse files Browse the repository at this point in the history
Update Azure library dependencies. This enables the use of the
 web socket transport, which is required in order to be able to support
 proxying - see #29 (comment)

Fixes #36
  • Loading branch information
robbavey committed May 15, 2019
1 parent 9773e8e commit efe6599
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.1
- Updated Azure event hub library dependencies

## 1.1.0
- Updated Azure event hub library dependencies[#27](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/27)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ repositories {
dependencies {
testCompile 'junit:junit:4.12'

compile 'com.microsoft.azure:azure-eventhubs:1.3.0'
compile 'com.microsoft.azure:azure-eventhubs-eph:2.1.0'
compile 'com.microsoft.azure:azure-eventhubs:2.2.0'
compile 'com.microsoft.azure:qpid-proton-j-extensions:1.1.0'
compile 'com.microsoft.azure:azure-eventhubs-eph:2.4.0'
compile 'com.microsoft.azure:azure-storage:8.0.0'
runtime 'com.google.code.gson:gson:2.8.5'
runtime 'org.apache.qpid:proton-j:0.31.0'
runtime 'org.apache.qpid:proton-j:0.33.0'
compile 'org.apache.logging.log4j:log4j-api:2.9.1'
runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'

Expand Down
7 changes: 4 additions & 3 deletions lib/logstash-input-azure_event_hubs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

require 'jar_dependencies'
require_jar('com.google.code.gson', 'gson', '2.8.5')
require_jar('org.apache.qpid', 'proton-j', '0.31.0')
require_jar('org.apache.qpid', 'proton-j', '0.33.0')
require_jar('org.apache.logging.log4j', 'log4j-slf4j-impl', '2.9.1')
require_jar('com.microsoft.azure', 'azure-eventhubs', '1.3.0')
require_jar('com.microsoft.azure', 'azure-eventhubs-eph', '2.1.0')
require_jar('com.microsoft.azure', 'azure-eventhubs', '2.2.0')
require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.1.0')
require_jar('com.microsoft.azure', 'azure-eventhubs-eph', '2.4.0')
require_jar('com.microsoft.azure', 'azure-storage', '8.0.0')
require_jar('org.apache.logging.log4j', 'log4j-api', '2.9.1')

0 comments on commit efe6599

Please sign in to comment.