Skip to content

Commit e30e027

Browse files
authored
Merge pull request #500 from AzureAD/SJAIN/Issue-428
issue #428 resolution
2 parents b1879b8 + db84564 commit e30e027

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,22 @@
3737
<groupId>com.nimbusds</groupId>
3838
<artifactId>oauth2-oidc-sdk</artifactId>
3939
<version>9.32</version>
40+
<exclusions>
41+
<exclusion>
42+
<!--
43+
com.nimbusds:oauth2-oidc-sdk:9.7 have version range: net.minidev:json-smart:[1.3.3,2.4.7].
44+
This will bring trouble to our customer.
45+
Refs: https://github.com/Azure/azure-sdk-for-java/issues/23373
46+
-->
47+
<groupId>net.minidev</groupId>
48+
<artifactId>json-smart</artifactId>
49+
</exclusion>
50+
</exclusions>
51+
</dependency>
52+
<dependency>
53+
<groupId>net.minidev</groupId>
54+
<artifactId>json-smart</artifactId>
55+
<version>2.4.8</version>
4056
</dependency>
4157
<dependency>
4258
<groupId>org.slf4j</groupId>

src/test/java/com/microsoft/aad/msal4j/AuthorityTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ public void testDoStaticInstanceDiscovery_ValidateFalse_TrustedAuthority()
158158
@DataProvider(name = "authoritiesWithEmptyPath")
159159
public static Object[][] createData() {
160160
return new Object[][]{{"https://login.microsoftonline.com/"},
161-
{"https://login.microsoftonline.com//"},
162161
{"https://login.microsoftonline.com//tenant"},
163162
{"https://login.microsoftonline.com////tenant//path1"}};
164163
}

0 commit comments

Comments
 (0)