Skip to content

Commit e47cac4

Browse files
Updated java-http-client dependency to fix sendgrid#120
1 parent c39c95b commit e47cac4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ buildscript {
4545
}
4646

4747
dependencies {
48-
compile 'com.sendgrid:java-http-client:2.3.1'
48+
compile 'com.sendgrid:java-http-client:2.3.2'
4949
compile 'com.fasterxml.jackson.core:jackson-core:2.5.3'
5050
compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.3'
5151
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<dependency>
9090
<groupId>com.sendgrid</groupId>
9191
<artifactId>java-http-client</artifactId>
92-
<version>2.3.1</version>
92+
<version>2.3.2</version>
9393
</dependency>
9494
<dependency>
9595
<groupId>com.fasterxml.jackson.core</groupId>

src/main/java/com/sendgrid/SendGrid.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public SendGrid(String apiKey) {
3232

3333
/**
3434
* @param apiKey is your SendGrid API Key: https://app.sendgrid.com/settings/api_keys
35+
* @param test is true if you are unit testing
3536
*/
3637
public SendGrid(String apiKey, Boolean test) {
3738
this.client = new Client(test);

0 commit comments

Comments
 (0)