File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
src/main/java/com/sendgrid Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2016-2018 SendGrid, Inc.
3+ Copyright (c) 2016-2019 SendGrid, Inc.
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ buildscript {
4141}
4242
4343dependencies {
44- compile ' org.apache.httpcomponents:httpcore:4.4.4 '
45- compile ' org.apache.httpcomponents:httpclient:4.5.2 '
44+ compile ' org.apache.httpcomponents:httpcore:4.4.12 '
45+ compile ' org.apache.httpcomponents:httpclient:4.5.10 '
4646 testCompile ' org.mockito:mockito-core:1.10.19'
4747 testCompile group : ' junit' , name : ' junit-dep' , version : ' 4.10'
4848
Original file line number Diff line number Diff line change 4646 <dependency >
4747 <groupId >org.apache.httpcomponents</groupId >
4848 <artifactId >httpcore</artifactId >
49- <version >4.4.4 </version >
49+ <version >4.4.12 </version >
5050 </dependency >
5151 <dependency >
5252 <groupId >org.apache.httpcomponents</groupId >
5353 <artifactId >httpclient</artifactId >
54- <version >4.5.2 </version >
54+ <version >4.5.10 </version >
5555 </dependency >
5656 </dependencies >
5757 <build >
Original file line number Diff line number Diff line change 1212
1313import org .apache .http .Header ;
1414import org .apache .http .HttpMessage ;
15- import org .apache .http .annotation .NotThreadSafe ;
1615import org .apache .http .client .ClientProtocolException ;
1716import org .apache .http .client .ResponseHandler ;
1817import org .apache .http .client .methods .CloseableHttpResponse ;
2827import org .apache .http .impl .client .HttpClients ;
2928
3029// Hack to get DELETE to accept a request body
31- @ NotThreadSafe
3230class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {
3331 public static final String METHOD_NAME = "DELETE" ;
3432
You can’t perform that action at this time.
0 commit comments