Skip to content

Commit

Permalink
Update Jackson dependencies for CI tests (#46)
Browse files Browse the repository at this point in the history
* Update Jackson dependencies for CI tests
* Also increase memory as 256m was not sufficient
* Update reference to proton j
  • Loading branch information
robbavey committed Jan 9, 2020
1 parent e75f658 commit 9b584d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
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.33.1'
runtime 'org.apache.qpid:proton-j:0.33.3'
compile 'org.apache.logging.log4j:log4j-api:2.9.1'
runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'
}
Expand Down
4 changes: 2 additions & 2 deletions ci/integration/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
ports:
- "9600:9600"
environment:
LS_JAVA_OPTS: "-Xmx256m -Xms256m"
LS_JAVA_OPTS: "-Xmx512m -Xms512m"
JARS_SKIP: "true"
ENV1: ${ENV1}
ENV2: ${ENV2}
Expand All @@ -33,7 +33,7 @@ services:
ports:
- "9601:9600"
environment:
LS_JAVA_OPTS: "-Xmx256m -Xms256m"
LS_JAVA_OPTS: "-Xmx512m -Xms512m"
JARS_SKIP: "true"
ENV1: ${ENV1}
ENV2: ${ENV2}
6 changes: 3 additions & 3 deletions ci/integration/event_hub_producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,17 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>[2.9.9,3.0)</version>
<version>[2.9.10,3.0)</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>[2.9.9,3.0)</version>
<version>[2.9.10,3.0)</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>[2.9.9,3.0)</version>
<version>[2.9.10.1,3.0)</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion lib/logstash-input-azure_event_hubs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'jar_dependencies'
require_jar('com.google.code.gson', 'gson', '2.8.5')
require_jar('org.apache.qpid', 'proton-j', '0.33.1')
require_jar('org.apache.qpid', 'proton-j', '0.33.3')
require_jar('org.apache.logging.log4j', 'log4j-slf4j-impl', '2.9.1')
require_jar('com.microsoft.azure', 'azure-eventhubs', '2.2.0')
require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.1.0')
Expand Down

0 comments on commit 9b584d5

Please sign in to comment.