From a7667831b6a24fe296ab6a85b61e2ad3af3b760e Mon Sep 17 00:00:00 2001 From: SomkaPe Date: Thu, 19 Mar 2020 22:19:17 -0700 Subject: [PATCH 1/6] updating test dependencies --- pom.xml | 83 ++++++++++++++++----------------------------------------- 1 file changed, 23 insertions(+), 60 deletions(-) diff --git a/pom.xml b/pom.xml index 83c04c8..636c643 100644 --- a/pom.xml +++ b/pom.xml @@ -95,41 +95,29 @@ - org.testng - testng - 6.8.8 - test - - - org.powermock - powermock-module-testng - 1.6.5 - test - - - org.powermock - powermock-api-easymock - 1.6.5 - test - - - org.easymock - easymock - 3.4 - test - - - net.sourceforge.cobertura - cobertura - 2.0.3 - test - - - com.sun - tools - - - + org.testng + testng + 7.1.0 + test + + + org.powermock + powermock-module-testng + 2.0.0 + test + + + org.powermock + powermock-api-easymock + 2.0.0 + test + + + org.easymock + easymock + 4.0.2 + test + @@ -183,31 +171,6 @@ 1.7 - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - */*Test.class - - - - xml - html - - - - - com.sun - tools - 1.6 - system - ${tools-jar} - - - org.apache.maven.plugins maven-javadoc-plugin From fc311455d9439b62b294fabafa9a69d25c8128e7 Mon Sep 17 00:00:00 2001 From: SomkaPe Date: Thu, 19 Mar 2020 22:32:19 -0700 Subject: [PATCH 2/6] minor fix --- .../com/microsoft/aad/adal4j/AdalOAuthRequestTest.java | 6 ++++-- src/test/java/com/microsoft/aad/adal4j/HttpHelperTest.java | 7 ++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java b/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java index 8bbe892..6657dbc 100644 --- a/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java +++ b/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java @@ -25,6 +25,7 @@ import static org.testng.Assert.assertNotNull; +import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; @@ -33,7 +34,6 @@ import com.nimbusds.oauth2.sdk.http.HTTPRequest.Method; import com.nimbusds.oauth2.sdk.http.HTTPResponse; -import org.apache.tools.ant.filters.StringInputStream; import org.easymock.EasyMock; import org.powermock.api.easymock.PowerMock; import org.powermock.core.classloader.annotations.PrepareForTest; @@ -139,7 +139,9 @@ public void testCreateResponseFor404() throws Exception { .createMock(HttpURLConnection.class); EasyMock.expect(conn.getResponseCode()).andReturn(404); EasyMock.expect(conn.getErrorStream()).andReturn(null); - InputStream stream = new StringInputStream("stream"); + + InputStream stream = new ByteArrayInputStream( "stream".getBytes() ); + EasyMock.expect(conn.getInputStream()).andReturn(stream); PowerMock.replay(conn); final String response = Whitebox.invokeMethod(request, diff --git a/src/test/java/com/microsoft/aad/adal4j/HttpHelperTest.java b/src/test/java/com/microsoft/aad/adal4j/HttpHelperTest.java index aecb06c..4724fb6 100644 --- a/src/test/java/com/microsoft/aad/adal4j/HttpHelperTest.java +++ b/src/test/java/com/microsoft/aad/adal4j/HttpHelperTest.java @@ -24,12 +24,11 @@ package com.microsoft.aad.adal4j; import javax.net.ssl.HttpsURLConnection; -import java.io.IOException; +import java.io.ByteArrayInputStream; import java.io.InputStream; import java.io.StringReader; import java.net.URL; -import org.apache.tools.ant.util.ReaderInputStream; import org.easymock.EasyMock; import org.powermock.api.easymock.PowerMock; import org.testng.annotations.Test; @@ -50,9 +49,7 @@ public void testReadResponseFromConnection_ResponseCodeNot200() EasyMock.expect(connection.getResponseCode()).andReturn(403).times(2); EasyMock.expect(connection.getURL()).andReturn(new URL("https://some.url")); - String testInput = "error info"; - StringReader reader = new StringReader(testInput); - InputStream is = new ReaderInputStream(reader); + InputStream is = new ByteArrayInputStream( "error info".getBytes() ); EasyMock.expect(connection.getErrorStream()).andReturn(is).times(1); From 7cf9e83bf79ff7feeea2e273ac14163ff05b2ad0 Mon Sep 17 00:00:00 2001 From: SomkaPe Date: Wed, 16 Sep 2020 22:57:57 -0700 Subject: [PATCH 3/6] Pesomka/release1.6.6 (#297) * 1.6.6 release --- README.md | 4 ++-- changelog.txt | 4 ++++ pom.xml | 4 ++-- src/samples/public-client-app-sample/pom.xml | 2 +- src/samples/public-client-device-code-sample/pom.xml | 2 +- src/samples/web-app-samples-for-adal4j/pom.xml | 2 +- .../java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java | 4 ++-- 7 files changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 88772e1..01705da 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ ADAL4J is in maintenance mode and no new features will be added going forward ex You can find the steps for installation and basic usage documented in the [ADAL4J Basics Wiki](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki/ADAL4J-Basics). ## Versions -Current version - 1.6.5 +Current version - 1.6.6 -Minimum recommended version - 1.6.5 +Minimum recommended version - 1.6.6 From version 1.3.0 support for handling Conditional Access claims challenge was added. You can read about CA [here](https://go.microsoft.com/fwlink/?linkid=855860) and refer this [sample](https://github.com/AzureAD/azure-activedirectory-library-for-java/tree/dev/src/samples/web-app-samples-for-adal4j) to handle it. diff --git a/changelog.txt b/changelog.txt index 25296f2..d02936b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Version 1.6.6 +============= +- updated oauth2-oidc-sdk to 7.4 + Version 1.6.5 ============= - updated commons-codec to 1.14 diff --git a/pom.xml b/pom.xml index 636c643..9675da8 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.microsoft.azure adal4j - 1.6.5 + 1.6.6 jar adal4j @@ -70,7 +70,7 @@ com.nimbusds oauth2-oidc-sdk - 6.5 + 7.4 com.google.code.gson diff --git a/src/samples/public-client-app-sample/pom.xml b/src/samples/public-client-app-sample/pom.xml index 9bc254c..9c14d6f 100644 --- a/src/samples/public-client-app-sample/pom.xml +++ b/src/samples/public-client-app-sample/pom.xml @@ -15,7 +15,7 @@ com.microsoft.azure adal4j - 1.6.5 + 1.6.6 diff --git a/src/samples/public-client-device-code-sample/pom.xml b/src/samples/public-client-device-code-sample/pom.xml index 2e64642..353b79e 100644 --- a/src/samples/public-client-device-code-sample/pom.xml +++ b/src/samples/public-client-device-code-sample/pom.xml @@ -19,7 +19,7 @@ com.microsoft.azure adal4j - 1.6.5 + 1.6.6 diff --git a/src/samples/web-app-samples-for-adal4j/pom.xml b/src/samples/web-app-samples-for-adal4j/pom.xml index 5c74688..fb9fa52 100644 --- a/src/samples/web-app-samples-for-adal4j/pom.xml +++ b/src/samples/web-app-samples-for-adal4j/pom.xml @@ -15,7 +15,7 @@ com.microsoft.azure adal4j - 1.6.5 + 1.6.6 com.nimbusds diff --git a/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java b/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java index 6657dbc..0adef1d 100644 --- a/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java +++ b/src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java @@ -52,8 +52,8 @@ public void testConstructor() throws MalformedURLException { assertNotNull(request); } - - @Test(expectedExceptions = IOException.class, expectedExceptionsMessageRegExp = "Couldn't parse Content-Type header: Invalid Content-Type value: In Content-Type string , expected '/', got null") + @Test(expectedExceptions = IOException.class, expectedExceptionsMessageRegExp = + "Couldn't parse Content-Type header: Invalid Content-Type value: Invalid content type string") public void testCreateResponseContentTypeParsingFailure() throws Exception { From 0273809b849d764740431f97d0c058d8f143d9ba Mon Sep 17 00:00:00 2001 From: ShannonCanTech Date: Tue, 23 Mar 2021 13:51:38 -0700 Subject: [PATCH 4/6] survey link added to README.md Developer loyalty survey link added to README.md. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 01705da..5f97b6f 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ This library, ADAL for Java, will no longer receive new feature improvements. In --------------------|-----------------|--------------- [![Build Status](https://identitydivision.visualstudio.com/_apis/public/build/definitions/a7934fdd-dcde-4492-a406-7fad6ac00e17/591/badge?branchName=master)](https://identitydivision.visualstudio.com/IDDP/IDDP%20Team/_build/index?definitionId=591) | [![Build Status](https://identitydivision.visualstudio.com/_apis/public/build/definitions/a7934fdd-dcde-4492-a406-7fad6ac00e17/591/badge?branchName=dev)](https://identitydivision.visualstudio.com/IDDP/IDDP%20Team/_build/index?definitionId=591) | [![Javadocs](http://javadoc.io/badge/com.microsoft.azure/adal4j.svg)](http://javadoc.io/doc/com.microsoft.azure/adal4j) -|[Getting Started](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki)| [Docs](https://aka.ms/aaddev)| [Samples](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki/Code-samples)| [Support](README.md#community-help-and-support) -| --- | --- | --- | --- | +|[Getting Started](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki)| [Docs](https://aka.ms/aaddev)| [Samples](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki/Code-samples)| [Support](README.md#community-help-and-support) | [Feedback](https://forms.office.com/r/MwHcRFtgtq) | +| --- | --- | --- | --- | --- | The ADAL for Java library enables Java applications to authenticate with Azure AD and get tokens to access Azure AD protected web resources. @@ -64,6 +64,9 @@ We leverage [Stack Overflow](http://stackoverflow.com/) to work with the communi We recommend you use the "adal" tag so we can see it! Here is the latest Q&A on Stack Overflow for ADAL: [http://stackoverflow.com/questions/tagged/adal](http://stackoverflow.com/questions/tagged/adal) +## Submit Feedback +We'd like your thoughts on this library. Please complete [this short survey.](https://forms.office.com/r/MwHcRFtgtq) + ## Security Reporting If you find a security issue with our libraries or services please report it to [secure@microsoft.com](mailto:secure@microsoft.com) with as much detail as possible. Your submission may be eligible for a bounty through the [Microsoft Bounty](http://aka.ms/bugbounty) program. Please do not post security issues to GitHub Issues or any other public site. We will contact you shortly upon receiving the information. We encourage you to get notifications of when security incidents occur by visiting [this page](https://technet.microsoft.com/en-us/security/dd252948) and subscribing to Security Advisory Alerts. From 00d8d4c32ef1e99e88ea59c6d2c9ecba1cba69cb Mon Sep 17 00:00:00 2001 From: Avery-Dunn Date: Tue, 27 Apr 2021 14:16:22 -0700 Subject: [PATCH 5/6] Update oauth2-oidc-sdk dependency to version 9.4 --- pom.xml | 2 +- .../aad/adal4j/AdalOAuthRequest.java | 3 +-- .../aad/adal4j/AdalTokenRequest.java | 5 ++--- .../aad/adal4j/ClientAuthenticationPost.java | 9 +++------ .../microsoft/aad/adal4j/HTTPContentType.java | 19 +++++++++++++++++++ .../aad/adal4j/AdalTokenRequestTest.java | 7 +++---- .../aad/adal4j/DeviceCodeFlowTest.java | 3 +-- 7 files changed, 30 insertions(+), 18 deletions(-) create mode 100644 src/main/java/com/microsoft/aad/adal4j/HTTPContentType.java diff --git a/pom.xml b/pom.xml index 9675da8..1d92470 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ com.nimbusds oauth2-oidc-sdk - 7.4 + 9.4 com.google.code.gson diff --git a/src/main/java/com/microsoft/aad/adal4j/AdalOAuthRequest.java b/src/main/java/com/microsoft/aad/adal4j/AdalOAuthRequest.java index 42eb2aa..24aef24 100644 --- a/src/main/java/com/microsoft/aad/adal4j/AdalOAuthRequest.java +++ b/src/main/java/com/microsoft/aad/adal4j/AdalOAuthRequest.java @@ -40,7 +40,6 @@ import java.util.Map; import com.nimbusds.oauth2.sdk.ParseException; -import com.nimbusds.oauth2.sdk.http.CommonContentTypes; import com.nimbusds.oauth2.sdk.http.HTTPRequest; import com.nimbusds.oauth2.sdk.http.HTTPResponse; import org.slf4j.Logger; @@ -138,7 +137,7 @@ void configureHeaderAndExecuteOAuthCall(final HttpsURLConnection conn) HttpHelper.configureAdditionalHeaders(conn, params); conn.setDoOutput(true); conn.setRequestProperty("Content-Type", - CommonContentTypes.APPLICATION_URLENCODED.toString()); + HTTPContentType.ApplicationURLEncoded.contentType); if (this.getQuery() != null) { try(final OutputStreamWriter writer = new OutputStreamWriter( diff --git a/src/main/java/com/microsoft/aad/adal4j/AdalTokenRequest.java b/src/main/java/com/microsoft/aad/adal4j/AdalTokenRequest.java index 6d102f1..ad407fb 100644 --- a/src/main/java/com/microsoft/aad/adal4j/AdalTokenRequest.java +++ b/src/main/java/com/microsoft/aad/adal4j/AdalTokenRequest.java @@ -37,7 +37,6 @@ import com.nimbusds.oauth2.sdk.SerializeException; import com.nimbusds.oauth2.sdk.TokenErrorResponse; import com.nimbusds.oauth2.sdk.auth.ClientAuthentication; -import com.nimbusds.oauth2.sdk.http.CommonContentTypes; import com.nimbusds.oauth2.sdk.http.HTTPRequest; import com.nimbusds.oauth2.sdk.http.HTTPResponse; import com.nimbusds.oauth2.sdk.util.URLUtils; @@ -146,7 +145,7 @@ private String getClaims(String httpResponseContentStr) { * @return * @throws SerializeException */ - AdalOAuthRequest toOAuthRequest() throws SerializeException { + AdalOAuthRequest toOAuthRequest() throws SerializeException, ParseException { if (this.uri == null) { throw new SerializeException("The endpoint URI is not specified"); @@ -155,7 +154,7 @@ AdalOAuthRequest toOAuthRequest() throws SerializeException { final AdalOAuthRequest httpRequest = new AdalOAuthRequest( HTTPRequest.Method.POST, this.uri, headerMap, this.proxy, this.sslSocketFactory); - httpRequest.setContentType(CommonContentTypes.APPLICATION_URLENCODED); + httpRequest.setContentType(HTTPContentType.ApplicationURLEncoded.contentType); final Map> params = this.grant.toParameters(); httpRequest.setQuery(URLUtils.serializeParameters(params)); if (this.clientAuth != null) { diff --git a/src/main/java/com/microsoft/aad/adal4j/ClientAuthenticationPost.java b/src/main/java/com/microsoft/aad/adal4j/ClientAuthenticationPost.java index 54f4f43..61be0b9 100644 --- a/src/main/java/com/microsoft/aad/adal4j/ClientAuthenticationPost.java +++ b/src/main/java/com/microsoft/aad/adal4j/ClientAuthenticationPost.java @@ -28,12 +28,9 @@ import java.util.List; import java.util.Map; -import javax.mail.internet.ContentType; - import com.nimbusds.oauth2.sdk.SerializeException; import com.nimbusds.oauth2.sdk.auth.ClientAuthentication; import com.nimbusds.oauth2.sdk.auth.ClientAuthenticationMethod; -import com.nimbusds.oauth2.sdk.http.CommonContentTypes; import com.nimbusds.oauth2.sdk.http.HTTPRequest; import com.nimbusds.oauth2.sdk.id.ClientID; import com.nimbusds.oauth2.sdk.util.URLUtils; @@ -60,15 +57,15 @@ public void applyTo(HTTPRequest httpRequest) throws SerializeException { if (httpRequest.getMethod() != HTTPRequest.Method.POST) throw new SerializeException("The HTTP request method must be POST"); - ContentType ct = httpRequest.getContentType(); + String ct = String.valueOf(httpRequest.getEntityContentType()); if (ct == null) throw new SerializeException("Missing HTTP Content-Type header"); - if (!ct.match(CommonContentTypes.APPLICATION_URLENCODED)) + if (!ct.equals(HTTPContentType.ApplicationURLEncoded.contentType)) throw new SerializeException( "The HTTP Content-Type header must be " - + CommonContentTypes.APPLICATION_URLENCODED); + + HTTPContentType.ApplicationURLEncoded.contentType); Map> params = httpRequest.getQueryParameters(); diff --git a/src/main/java/com/microsoft/aad/adal4j/HTTPContentType.java b/src/main/java/com/microsoft/aad/adal4j/HTTPContentType.java new file mode 100644 index 0000000..1739234 --- /dev/null +++ b/src/main/java/com/microsoft/aad/adal4j/HTTPContentType.java @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.microsoft.aad.adal4j; + +/** + * Enum containing HTTP Content-Type header values + */ +enum HTTPContentType { + + ApplicationURLEncoded("application/x-www-form-urlencoded; charset=UTF-8"), + ApplicationJSON("application/json; charset=UTF-8"); + + public final String contentType; + + HTTPContentType(String contentType) { + this.contentType = contentType; + } +} \ No newline at end of file diff --git a/src/test/java/com/microsoft/aad/adal4j/AdalTokenRequestTest.java b/src/test/java/com/microsoft/aad/adal4j/AdalTokenRequestTest.java index 39b70a3..d3e0889 100644 --- a/src/test/java/com/microsoft/aad/adal4j/AdalTokenRequestTest.java +++ b/src/test/java/com/microsoft/aad/adal4j/AdalTokenRequestTest.java @@ -33,7 +33,6 @@ import com.nimbusds.oauth2.sdk.auth.ClientAuthentication; import com.nimbusds.oauth2.sdk.auth.ClientSecretPost; import com.nimbusds.oauth2.sdk.auth.Secret; -import com.nimbusds.oauth2.sdk.http.CommonContentTypes; import com.nimbusds.oauth2.sdk.http.HTTPResponse; import com.nimbusds.oauth2.sdk.id.ClientID; import com.nimbusds.oauth2.sdk.util.JSONObjectUtils; @@ -77,7 +76,7 @@ public void executeOAuthRequest_SCBadRequestErrorInteractionRequired_AdalClaimsC "\"correlation_id\":\"3a...95a\"," + "\"claims\":\"" + claims + "\"}"; httpResponse.setContent(content); - httpResponse.setContentType(CommonContentTypes.APPLICATION_JSON); + httpResponse.setContentType(HTTPContentType.ApplicationJSON.contentType); EasyMock.expect(request.toOAuthRequest()).andReturn(adalOAuthHttpRequest).times(1); EasyMock.expect(adalOAuthHttpRequest.send()).andReturn(httpResponse).times(1); @@ -131,7 +130,7 @@ public void testConstructor() throws MalformedURLException, @Test public void testToOAuthRequestNonEmptyCorrelationId() throws MalformedURLException, SerializeException, - URISyntaxException { + URISyntaxException, ParseException { final ClientAuthentication ca = new ClientSecretPost( new ClientID("id"), new Secret("secret")); final AuthorizationGrant ag = new AuthorizationCodeGrant( @@ -155,7 +154,7 @@ public void testToOAuthRequestNonEmptyCorrelationId() @Test public void testToOAuthRequestNullCorrelationId_NullClientAuth() throws MalformedURLException, SerializeException, - URISyntaxException { + URISyntaxException, ParseException { final AuthorizationGrant ag = new AuthorizationCodeGrant( new AuthorizationCode("code"), new URI("http://my.redirect.com")); diff --git a/src/test/java/com/microsoft/aad/adal4j/DeviceCodeFlowTest.java b/src/test/java/com/microsoft/aad/adal4j/DeviceCodeFlowTest.java index 225b17a..e3a25c8 100644 --- a/src/test/java/com/microsoft/aad/adal4j/DeviceCodeFlowTest.java +++ b/src/test/java/com/microsoft/aad/adal4j/DeviceCodeFlowTest.java @@ -33,7 +33,6 @@ import java.util.concurrent.Future; import com.nimbusds.oauth2.sdk.auth.ClientAuthentication; -import com.nimbusds.oauth2.sdk.http.CommonContentTypes; import com.nimbusds.oauth2.sdk.http.HTTPResponse; import org.easymock.Capture; import org.easymock.EasyMock; @@ -196,7 +195,7 @@ public void executeAcquireDeviceCode_AuthenticaionPendingErrorReturned_Authentic "\"correlation_id\":\"ff60101b-cb23-4a52-82cb-9966f466327a\"}"; httpResponse.setContent(content); - httpResponse.setContentType(CommonContentTypes.APPLICATION_JSON); + httpResponse.setContentType(HTTPContentType.ApplicationJSON.contentType); EasyMock.expect(request.toOAuthRequest()).andReturn(adalOAuthHttpRequest).times(1); EasyMock.expect(adalOAuthHttpRequest.send()).andReturn(httpResponse).times(1); From 27168dd5ca25f8c57d13bf98f0a29f428e7eedd1 Mon Sep 17 00:00:00 2001 From: Avery-Dunn Date: Fri, 30 Apr 2021 09:12:06 -0700 Subject: [PATCH 6/6] Version changes for release 1.6.7 --- README.md | 4 ++-- changelog.txt | 4 ++++ pom.xml | 2 +- src/samples/public-client-app-sample/pom.xml | 2 +- src/samples/public-client-device-code-sample/pom.xml | 2 +- src/samples/web-app-samples-for-adal4j/pom.xml | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5f97b6f..ec50e73 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ ADAL4J is in maintenance mode and no new features will be added going forward ex You can find the steps for installation and basic usage documented in the [ADAL4J Basics Wiki](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki/ADAL4J-Basics). ## Versions -Current version - 1.6.6 +Current version - 1.6.7 -Minimum recommended version - 1.6.6 +Minimum recommended version - 1.6.7 From version 1.3.0 support for handling Conditional Access claims challenge was added. You can read about CA [here](https://go.microsoft.com/fwlink/?linkid=855860) and refer this [sample](https://github.com/AzureAD/azure-activedirectory-library-for-java/tree/dev/src/samples/web-app-samples-for-adal4j) to handle it. diff --git a/changelog.txt b/changelog.txt index d02936b..1a6ea0a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Version 1.6.7 +============= +- updated oauth2-oidc-sdk to 9.4 + Version 1.6.6 ============= - updated oauth2-oidc-sdk to 7.4 diff --git a/pom.xml b/pom.xml index 1d92470..18ee364 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.microsoft.azure adal4j - 1.6.6 + 1.6.7 jar adal4j diff --git a/src/samples/public-client-app-sample/pom.xml b/src/samples/public-client-app-sample/pom.xml index 9c14d6f..eb7f33b 100644 --- a/src/samples/public-client-app-sample/pom.xml +++ b/src/samples/public-client-app-sample/pom.xml @@ -15,7 +15,7 @@ com.microsoft.azure adal4j - 1.6.6 + 1.6.7 diff --git a/src/samples/public-client-device-code-sample/pom.xml b/src/samples/public-client-device-code-sample/pom.xml index 353b79e..655cc7e 100644 --- a/src/samples/public-client-device-code-sample/pom.xml +++ b/src/samples/public-client-device-code-sample/pom.xml @@ -19,7 +19,7 @@ com.microsoft.azure adal4j - 1.6.6 + 1.6.7 diff --git a/src/samples/web-app-samples-for-adal4j/pom.xml b/src/samples/web-app-samples-for-adal4j/pom.xml index fb9fa52..c01f92e 100644 --- a/src/samples/web-app-samples-for-adal4j/pom.xml +++ b/src/samples/web-app-samples-for-adal4j/pom.xml @@ -15,7 +15,7 @@ com.microsoft.azure adal4j - 1.6.6 + 1.6.7 com.nimbusds