Skip to content

Commit 70e61bc

Browse files
authored
Merge branch 'main' into thread-safe-pattern-filter
2 parents 7d6a290 + 42a61a9 commit 70e61bc

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@
5353
<plugin>
5454
<groupId>org.apache.maven.plugins</groupId>
5555
<artifactId>maven-compiler-plugin</artifactId>
56-
<version>3.14.0</version>
56+
<version>3.14.1</version>
5757
<configuration>
5858
<source>8</source>
5959
<target>8</target>
6060
<annotationProcessorPaths>
6161
<path>
6262
<groupId>org.projectlombok</groupId>
6363
<artifactId>lombok</artifactId>
64-
<version>1.18.38</version>
64+
<version>1.18.42</version>
6565
</path>
6666
<path>
6767
<groupId>org.openjdk.jmh</groupId>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<groupId>org.sonatype.central</groupId>
8484
<artifactId>central-publishing-maven-plugin</artifactId>
85-
<version>0.7.0</version>
85+
<version>0.9.0</version>
8686
<extensions>true</extensions>
8787
<configuration>
8888
<publishingServerId>central</publishingServerId>
@@ -103,7 +103,7 @@
103103
<plugin>
104104
<groupId>org.jacoco</groupId>
105105
<artifactId>jacoco-maven-plugin</artifactId>
106-
<version>0.8.13</version>
106+
<version>0.8.14</version>
107107
<executions>
108108
<execution>
109109
<goals>
@@ -135,7 +135,7 @@
135135
<plugin>
136136
<groupId>org.apache.maven.plugins</groupId>
137137
<artifactId>maven-javadoc-plugin</artifactId>
138-
<version>3.11.3</version>
138+
<version>3.12.0</version>
139139
<configuration>
140140
<show>public</show>
141141
<nohelp>true</nohelp>
@@ -155,7 +155,7 @@
155155
<plugin>
156156
<groupId>org.apache.maven.plugins</groupId>
157157
<artifactId>maven-surefire-plugin</artifactId>
158-
<version>3.5.3</version>
158+
<version>3.5.4</version>
159159
<executions>
160160
<execution>
161161
<id>allocator-tests</id>
@@ -203,7 +203,7 @@
203203
<plugin>
204204
<groupId>org.codehaus.mojo</groupId>
205205
<artifactId>versions-maven-plugin</artifactId>
206-
<version>2.18.0</version>
206+
<version>2.19.1</version>
207207
</plugin>
208208
</plugins>
209209
</build>
@@ -240,7 +240,7 @@
240240
<dependency>
241241
<groupId>org.bytedeco</groupId>
242242
<artifactId>javacpp</artifactId>
243-
<version>1.5.11</version>
243+
<version>1.5.12</version>
244244
</dependency>
245245
<dependency>
246246
<groupId>com.github.ben-manes.caffeine</groupId>
@@ -250,31 +250,31 @@
250250
<dependency>
251251
<groupId>org.junit.jupiter</groupId>
252252
<artifactId>junit-jupiter-api</artifactId>
253-
<version>5.7.1</version>
253+
<version>6.0.1</version>
254254
<scope>test</scope>
255255
</dependency>
256256
<dependency>
257257
<groupId>org.junit.jupiter</groupId>
258258
<artifactId>junit-jupiter-engine</artifactId>
259-
<version>5.7.1</version>
259+
<version>6.0.1</version>
260260
<scope>test</scope>
261261
</dependency>
262262
<dependency>
263263
<groupId>org.junit.jupiter</groupId>
264264
<artifactId>junit-jupiter-params</artifactId>
265-
<version>5.7.1</version>
265+
<version>6.0.1</version>
266266
<scope>test</scope>
267267
</dependency>
268268
<dependency>
269269
<groupId>org.assertj</groupId>
270270
<artifactId>assertj-core</artifactId>
271-
<version>3.27.3</version>
271+
<version>3.27.6</version>
272272
<scope>test</scope>
273273
</dependency>
274274
<dependency>
275275
<groupId>org.projectlombok</groupId>
276276
<artifactId>lombok</artifactId>
277-
<version>1.18.38</version>
277+
<version>1.18.42</version>
278278
<scope>provided</scope>
279279
</dependency>
280280
<dependency>

0 commit comments

Comments
 (0)