|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <artifactId>playwright</artifactId> |
5 | | - <version>4.10.1</version> |
| 5 | + <version>4.10.2</version> |
6 | 6 | <packaging>jar</packaging> |
7 | 7 | <parent> |
8 | 8 | <groupId>com.deque.html.axe-core</groupId> |
9 | 9 | <artifactId>virtual-superpackage</artifactId> |
10 | | - <version>4.10.1</version> |
| 10 | + <version>4.10.2</version> |
11 | 11 | <relativePath>../pom.xml</relativePath> |
12 | 12 | </parent> |
13 | 13 | <name>Axe-core Playwright Java</name> |
|
35 | 35 | <distributionManagement> |
36 | 36 | <repository> |
37 | 37 | <id>ossrh</id> |
38 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 38 | + <url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url> |
39 | 39 | </repository> |
40 | 40 | <snapshotRepository> |
41 | 41 | <id>ossrh</id> |
42 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 42 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
43 | 43 | </snapshotRepository> |
44 | 44 | </distributionManagement> |
45 | 45 | <scm> |
|
66 | 66 | <artifactId>frontend-maven-plugin</artifactId> |
67 | 67 | <!-- Use the latest released version: |
68 | 68 | https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ --> |
69 | | - <version>1.15.0</version> |
| 69 | + <version>1.15.1</version> |
70 | 70 | <executions> |
71 | 71 | <execution> |
72 | 72 | <id>install node and npm</id> |
|
139 | 139 | <plugin> |
140 | 140 | <groupId>org.apache.maven.plugins</groupId> |
141 | 141 | <artifactId>maven-javadoc-plugin</artifactId> |
142 | | - <version>3.7.0</version> |
| 142 | + <version>3.11.1</version> |
143 | 143 | <executions> |
144 | 144 | <execution> |
145 | 145 | <id>attach-javadocs</id> |
|
161 | 161 | <plugin> |
162 | 162 | <groupId>org.apache.maven.plugins</groupId> |
163 | 163 | <artifactId>maven-surefire-plugin</artifactId> |
164 | | - <version>3.2.5</version> |
| 164 | + <version>3.5.2</version> |
165 | 165 | <configuration> |
166 | 166 | <argLine>@{argLine} -more -arguments</argLine> |
167 | 167 | <runOrder>alphabetical</runOrder> |
|
170 | 170 | <plugin> |
171 | 171 | <groupId>org.apache.maven.plugins</groupId> |
172 | 172 | <artifactId>maven-gpg-plugin</artifactId> |
173 | | - <version>3.2.4</version> |
| 173 | + <version>3.2.7</version> |
174 | 174 | <executions> |
175 | 175 | <execution> |
176 | 176 | <id>sign-artifacts</id> |
|
207 | 207 | <extensions>true</extensions> |
208 | 208 | <configuration> |
209 | 209 | <serverId>ossrh</serverId> |
210 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 210 | + <nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl> |
211 | 211 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
212 | 212 | </configuration> |
213 | 213 | </plugin> |
|
220 | 220 | <dependency> |
221 | 221 | <groupId>com.microsoft.playwright</groupId> |
222 | 222 | <artifactId>playwright</artifactId> |
223 | | - <version>1.44.0</version> |
| 223 | + <version>1.49.0</version> |
224 | 224 | </dependency> |
225 | 225 | <!-- Overrides commons-codec used in httpclient for security reasons --> |
226 | 226 | <dependency> |
227 | 227 | <groupId>commons-codec</groupId> |
228 | 228 | <artifactId>commons-codec</artifactId> |
229 | | - <version>1.17.0</version> |
| 229 | + <version>1.17.1</version> |
230 | 230 | </dependency> |
231 | 231 | <!-- Overrides commons-compress for security reasons --> |
232 | 232 | <dependency> |
233 | 233 | <groupId>org.apache.commons</groupId> |
234 | 234 | <artifactId>commons-compress</artifactId> |
235 | | - <version>1.26.2</version> |
| 235 | + <version>1.27.1</version> |
236 | 236 | </dependency> |
237 | 237 | <dependency> |
238 | 238 | <groupId>junit</groupId> |
|
255 | 255 | <dependency> |
256 | 256 | <groupId>com.fasterxml.jackson.core</groupId> |
257 | 257 | <artifactId>jackson-annotations</artifactId> |
258 | | - <version>2.17.1</version> |
| 258 | + <version>2.18.2</version> |
259 | 259 | <scope>compile</scope> |
260 | 260 | </dependency> |
261 | 261 | <dependency> |
262 | 262 | <groupId>com.fasterxml.jackson.core</groupId> |
263 | 263 | <artifactId>jackson-databind</artifactId> |
264 | | - <version>2.17.1</version> |
| 264 | + <version>2.18.2</version> |
265 | 265 | <scope>compile</scope> |
266 | 266 | </dependency> |
267 | 267 | <dependency> |
268 | 268 | <groupId>commons-io</groupId> |
269 | 269 | <artifactId>commons-io</artifactId> |
270 | | - <version>2.16.1</version> |
| 270 | + <version>2.18.0</version> |
271 | 271 | <scope>compile</scope> |
272 | 272 | </dependency> |
273 | 273 | <dependency> |
274 | 274 | <groupId>com.deque.html.axe-core</groupId> |
275 | 275 | <artifactId>dequeutilites</artifactId> |
276 | | - <version>4.10.1</version> |
| 276 | + <version>4.10.2</version> |
277 | 277 | <scope>compile</scope> |
278 | 278 | </dependency> |
279 | 279 | </dependencies> |
|
0 commit comments