Skip to content

Commit fdef16c

Browse files
committed
update deps
1 parent b2458a8 commit fdef16c

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>com.fasterxml.jackson.core</groupId>
5858
<artifactId>jackson-databind</artifactId>
59-
<version>2.10.3</version>
59+
<version>2.11.0</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>junit</groupId>
@@ -67,7 +67,7 @@
6767
<dependency>
6868
<groupId>com.squareup.okhttp3</groupId>
6969
<artifactId>mockwebserver</artifactId>
70-
<version>4.4.1</version>
70+
<version>4.6.0</version>
7171
<scope>test</scope>
7272
</dependency>
7373
</dependencies>
@@ -106,7 +106,7 @@
106106
<dependency>
107107
<groupId>com.puppycrawl.tools</groupId>
108108
<artifactId>checkstyle</artifactId>
109-
<version>8.30</version>
109+
<version>8.32</version>
110110
</dependency>
111111
</dependencies>
112112
</plugin>
@@ -187,7 +187,7 @@
187187
<plugin>
188188
<groupId>org.apache.maven.plugins</groupId>
189189
<artifactId>maven-javadoc-plugin</artifactId>
190-
<version>3.1.1</version>
190+
<version>3.2.0</version>
191191
<configuration>
192192
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
193193
<encoding>UTF-8</encoding>
@@ -273,7 +273,7 @@
273273

274274
<properties>
275275
<java.release>7</java.release>
276-
<pmdVersion>6.22.0</pmdVersion>
276+
<pmdVersion>6.23.0</pmdVersion>
277277
</properties>
278278

279279
<profiles>

scribejava-core/src/main/java/com/github/scribejava/core/model/OAuthAsyncRequestCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public interface OAuthAsyncRequestCallback<T> {
55
/**
66
* Implementations of this method should close provided response in case it implements {@link java.io.Closeable}
77
*
8-
* @param response
8+
* @param response response
99
*/
1010
void onCompleted(T response);
1111

scribejava-core/src/main/java/com/github/scribejava/core/model/OAuthRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,9 +405,9 @@ public interface ResponseConverter<T> {
405405
* Object of type &lt;T&gt; Then responsibility to close response is in on the
406406
* {@link com.github.scribejava.core.model.OAuthAsyncRequestCallback#onCompleted(java.lang.Object) }
407407
*
408-
* @param response
408+
* @param response response
409409
* @return T
410-
* @throws IOException
410+
* @throws IOException IOException
411411
*/
412412
T convert(Response response) throws IOException;
413413
}

scribejava-httpclient-ahc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.asynchttpclient</groupId>
2525
<artifactId>async-http-client</artifactId>
26-
<version>2.11.0</version>
26+
<version>2.12.1</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.github.scribejava</groupId>

scribejava-httpclient-okhttp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.squareup.okhttp3</groupId>
2525
<artifactId>okhttp</artifactId>
26-
<version>4.4.1</version>
26+
<version>4.6.0</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.github.scribejava</groupId>

0 commit comments

Comments
 (0)