Skip to content

Commit 43e8194

Browse files
committed
Update dependencies and improve formatting
1 parent d6ecdb3 commit 43e8194

File tree

1 file changed

+45
-60
lines changed

1 file changed

+45
-60
lines changed

msal4j-sdk/pom.xml

Lines changed: 45 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.microsoft.azure</groupId>
5-
<artifactId>msal4j</artifactId>
6-
<version>1.20.1</version>
7-
<packaging>jar</packaging>
8-
<name>msal4j</name>
9-
<description>
10-
Microsoft Authentication Library for Java gives you the ability to obtain tokens from Azure AD v2 (work and school
11-
accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft
12-
identities
13-
</description>
14-
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
15-
<developers>
16-
<developer>
17-
<id>msopentech</id>
18-
<name>Microsoft Open Technologies, Inc.</name>
19-
</developer>
20-
</developers>
21-
<licenses>
22-
<license>
23-
<name>MIT License</name>
24-
</license>
25-
</licenses>
26-
<inceptionYear>2013</inceptionYear>
27-
<scm>
28-
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
29-
</scm>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.microsoft.azure</groupId>
5+
<artifactId>msal4j</artifactId>
6+
<version>1.20.1</version>
7+
<packaging>jar</packaging>
8+
<name>msal4j</name>
9+
<description>
10+
Microsoft Authentication Library for Java gives you the ability to obtain tokens from Microsoft Entra (work and
11+
school accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft
12+
identities
13+
</description>
14+
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
15+
<developers>
16+
<developer>
17+
<id>msopentech</id>
18+
<name>Microsoft Open Technologies, Inc.</name>
19+
</developer>
20+
</developers>
21+
<licenses>
22+
<license>
23+
<name>MIT License</name>
24+
</license>
25+
</licenses>
26+
<inceptionYear>2013</inceptionYear>
27+
<scm>
28+
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
29+
</scm>
3030

3131
<properties>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -72,40 +72,34 @@
7272
</dependency>
7373

7474
<!-- test dependencies -->
75-
<dependency>
76-
<groupId>org.apache.commons</groupId>
77-
<artifactId>commons-text</artifactId>
78-
<version>1.10.0</version>
79-
<scope>test</scope>
80-
</dependency>
8175
<dependency>
8276
<groupId>org.junit.jupiter</groupId>
8377
<artifactId>junit-jupiter-api</artifactId>
84-
<version>5.9.2</version>
78+
<version>5.13.0</version>
8579
<scope>test</scope>
8680
</dependency>
8781
<dependency>
8882
<groupId>org.junit.jupiter</groupId>
8983
<artifactId>junit-jupiter-params</artifactId>
90-
<version>5.8.1</version>
84+
<version>5.13.0</version>
9185
<scope>test</scope>
9286
</dependency>
9387
<dependency>
9488
<groupId>org.junit.jupiter</groupId>
9589
<artifactId>junit-jupiter-engine</artifactId>
96-
<version>5.9.2</version>
90+
<version>5.13.0</version>
9791
<scope>test</scope>
9892
</dependency>
9993
<dependency>
10094
<groupId>org.mockito</groupId>
10195
<artifactId>mockito-inline</artifactId>
102-
<version>4.7.0</version>
96+
<version>4.11.0</version>
10397
<scope>test</scope>
10498
</dependency>
10599
<dependency>
106100
<groupId>org.mockito</groupId>
107101
<artifactId>mockito-junit-jupiter</artifactId>
108-
<version>4.7.0</version>
102+
<version>4.11.0</version>
109103
<scope>test</scope>
110104
</dependency>
111105
<dependency>
@@ -114,23 +108,16 @@
114108
<version>1.14.5</version>
115109
<scope>test</scope>
116110
</dependency>
117-
118111
<dependency>
119112
<groupId>org.skyscreamer</groupId>
120113
<artifactId>jsonassert</artifactId>
121-
<version>1.5.0</version>
122-
<scope>test</scope>
123-
</dependency>
124-
<dependency>
125-
<groupId>org.apache.httpcomponents</groupId>
126-
<artifactId>httpclient</artifactId>
127-
<version>4.5.13</version>
114+
<version>1.5.3</version>
128115
<scope>test</scope>
129116
</dependency>
130117
<dependency>
131118
<groupId>com.azure</groupId>
132119
<artifactId>azure-security-keyvault-secrets</artifactId>
133-
<version>4.3.5</version>
120+
<version>4.9.4</version>
134121
<scope>test</scope>
135122
</dependency>
136123
<dependency>
@@ -140,15 +127,9 @@
140127
<scope>test</scope>
141128
</dependency>
142129
<dependency>
143-
<groupId>com.google.guava</groupId>
144-
<artifactId>guava</artifactId>
145-
<version>32.1.1-jre</version>
146-
<scope>test</scope>
147-
</dependency>
148-
<dependency>
149-
<groupId>ch.qos.logback</groupId>
150-
<artifactId>logback-classic</artifactId>
151-
<version>1.3.12</version>
130+
<groupId>org.apache.commons</groupId>
131+
<artifactId>commons-text</artifactId>
132+
<version>1.13.1</version>
152133
<scope>test</scope>
153134
</dependency>
154135
<dependency>
@@ -205,7 +186,9 @@
205186
<executions>
206187
<execution>
207188
<id>check</id>
208-
<goals><goal>check</goal></goals>
189+
<goals>
190+
<goal>check</goal>
191+
</goals>
209192
</execution>
210193
</executions>
211194
</plugin>
@@ -233,7 +216,6 @@
233216
<addOutputDirectory>false</addOutputDirectory>
234217
</configuration>
235218
</plugin>
236-
237219
<plugin>
238220
<groupId>org.apache.maven.plugins</groupId>
239221
<artifactId>maven-jar-plugin</artifactId>
@@ -256,7 +238,6 @@
256238
<argLine>@{argLine} -noverify</argLine>
257239
</configuration>
258240
</plugin>
259-
260241
<plugin>
261242
<groupId>org.apache.maven.plugins</groupId>
262243
<artifactId>maven-javadoc-plugin</artifactId>
@@ -363,6 +344,10 @@
363344
</execution>
364345
</executions>
365346
</plugin>
347+
<plugin>
348+
<artifactId>maven-dependency-plugin</artifactId>
349+
<version>3.1.2</version>
350+
</plugin>
366351
</plugins>
367352
</build>
368353
</project>

0 commit comments

Comments
 (0)