Skip to content

Commit 22bf184

Browse files
committed
small fixes, update deps
1 parent 03dd1ea commit 22bf184

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<plugin>
9696
<groupId>org.apache.maven.plugins</groupId>
9797
<artifactId>maven-jar-plugin</artifactId>
98-
<version>3.0.2</version>
98+
<version>3.1.0</version>
9999
<configuration>
100100
<archive>
101101
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>

scribejava-core/src/main/java/com/github/scribejava/core/builder/api/DefaultApi20.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ public String getAuthorizationUrl(OAuthConfig config, Map<String, String> additi
8484
/**
8585
* Returns the URL where you should redirect your users to authenticate your application.
8686
*
87-
* @param config OAuth 2.0 configuration param object
8887
* @param additionalParams any additional GET params to add to the URL
8988
* @return the URL where you should redirect your users
9089
*/

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ public interface OAuthConstants {
2323
String BASIC = "Basic";
2424

2525
// OAuth 1.0
26+
/**
27+
* to indicate an out-of-band configuration
28+
* @see <a href="https://tools.ietf.org/html/rfc5849#section-2.1">The OAuth 1.0 Protocol</a>
29+
*/
2630
String OOB = "oob";
2731

2832
// OAuth 2.0

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.4.3</version>
26+
<version>2.4.5</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.github.scribejava</groupId>

0 commit comments

Comments
 (0)