Skip to content

Commit

Permalink
Bump JDBC driver's dependency version (#735)
Browse files Browse the repository at this point in the history
* Bump wiremock version

Signed-off-by: Chen Dai <daichen@amazon.com>

* Bump guava and json-smart version

Signed-off-by: Chen Dai <daichen@amazon.com>

* Bump httpclient version

Signed-off-by: Chen Dai <daichen@amazon.com>
  • Loading branch information
dai-chen authored Aug 9, 2022
1 parent e6a5ac9 commit 29f1c52
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions sql-jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,22 @@ repositories {
}

dependencies {
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.2.2'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-core', version: '1.11.452'

testImplementation('org.junit.jupiter:junit-jupiter-api:5.3.1')
testImplementation('org.junit.jupiter:junit-jupiter-params:5.3.1')
testImplementation('com.github.tomakehurst:wiremock:2.20.0')
testImplementation('com.github.tomakehurst:wiremock:2.27.2')
testImplementation('org.mockito:mockito-core:2.23.0')
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.3.1')
testImplementation('org.junit-pioneer:junit-pioneer:0.3.0')
testImplementation('org.eclipse.jetty:jetty-server:9.2.24.v20180105')

// Enforce wiremock to use latest guava and json-smart
testImplementation('com.google.guava:guava:31.1-jre')
testImplementation('net.minidev:json-smart:2.4.8')

testRuntimeOnly('org.slf4j:slf4j-simple:1.7.25') // capture WireMock logging
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

import java.io.IOException;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertThrows;

public class AWSRequestSigningApacheInterceptorTests {
Expand Down

0 comments on commit 29f1c52

Please sign in to comment.