|
1 | 1 | <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> |
30 | 30 |
|
31 | 31 | <properties>
|
32 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
72 | 72 | </dependency>
|
73 | 73 |
|
74 | 74 | <!-- 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> |
81 | 75 | <dependency>
|
82 | 76 | <groupId>org.junit.jupiter</groupId>
|
83 | 77 | <artifactId>junit-jupiter-api</artifactId>
|
84 |
| - <version>5.9.2</version> |
| 78 | + <version>5.13.0</version> |
85 | 79 | <scope>test</scope>
|
86 | 80 | </dependency>
|
87 | 81 | <dependency>
|
88 | 82 | <groupId>org.junit.jupiter</groupId>
|
89 | 83 | <artifactId>junit-jupiter-params</artifactId>
|
90 |
| - <version>5.8.1</version> |
| 84 | + <version>5.13.0</version> |
91 | 85 | <scope>test</scope>
|
92 | 86 | </dependency>
|
93 | 87 | <dependency>
|
94 | 88 | <groupId>org.junit.jupiter</groupId>
|
95 | 89 | <artifactId>junit-jupiter-engine</artifactId>
|
96 |
| - <version>5.9.2</version> |
| 90 | + <version>5.13.0</version> |
97 | 91 | <scope>test</scope>
|
98 | 92 | </dependency>
|
99 | 93 | <dependency>
|
100 | 94 | <groupId>org.mockito</groupId>
|
101 | 95 | <artifactId>mockito-inline</artifactId>
|
102 |
| - <version>4.7.0</version> |
| 96 | + <version>4.11.0</version> |
103 | 97 | <scope>test</scope>
|
104 | 98 | </dependency>
|
105 | 99 | <dependency>
|
106 | 100 | <groupId>org.mockito</groupId>
|
107 | 101 | <artifactId>mockito-junit-jupiter</artifactId>
|
108 |
| - <version>4.7.0</version> |
| 102 | + <version>4.11.0</version> |
109 | 103 | <scope>test</scope>
|
110 | 104 | </dependency>
|
111 | 105 | <dependency>
|
|
114 | 108 | <version>1.14.5</version>
|
115 | 109 | <scope>test</scope>
|
116 | 110 | </dependency>
|
117 |
| - |
118 | 111 | <dependency>
|
119 | 112 | <groupId>org.skyscreamer</groupId>
|
120 | 113 | <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> |
128 | 115 | <scope>test</scope>
|
129 | 116 | </dependency>
|
130 | 117 | <dependency>
|
131 | 118 | <groupId>com.azure</groupId>
|
132 | 119 | <artifactId>azure-security-keyvault-secrets</artifactId>
|
133 |
| - <version>4.3.5</version> |
| 120 | + <version>4.9.4</version> |
134 | 121 | <scope>test</scope>
|
135 | 122 | </dependency>
|
136 | 123 | <dependency>
|
|
140 | 127 | <scope>test</scope>
|
141 | 128 | </dependency>
|
142 | 129 | <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> |
152 | 133 | <scope>test</scope>
|
153 | 134 | </dependency>
|
154 | 135 | <dependency>
|
|
205 | 186 | <executions>
|
206 | 187 | <execution>
|
207 | 188 | <id>check</id>
|
208 |
| - <goals><goal>check</goal></goals> |
| 189 | + <goals> |
| 190 | + <goal>check</goal> |
| 191 | + </goals> |
209 | 192 | </execution>
|
210 | 193 | </executions>
|
211 | 194 | </plugin>
|
|
233 | 216 | <addOutputDirectory>false</addOutputDirectory>
|
234 | 217 | </configuration>
|
235 | 218 | </plugin>
|
236 |
| - |
237 | 219 | <plugin>
|
238 | 220 | <groupId>org.apache.maven.plugins</groupId>
|
239 | 221 | <artifactId>maven-jar-plugin</artifactId>
|
|
256 | 238 | <argLine>@{argLine} -noverify</argLine>
|
257 | 239 | </configuration>
|
258 | 240 | </plugin>
|
259 |
| - |
260 | 241 | <plugin>
|
261 | 242 | <groupId>org.apache.maven.plugins</groupId>
|
262 | 243 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
363 | 344 | </execution>
|
364 | 345 | </executions>
|
365 | 346 | </plugin>
|
| 347 | + <plugin> |
| 348 | + <artifactId>maven-dependency-plugin</artifactId> |
| 349 | + <version>3.1.2</version> |
| 350 | + </plugin> |
366 | 351 | </plugins>
|
367 | 352 | </build>
|
368 | 353 | </project>
|
0 commit comments