Skip to content

Commit 69f7507

Browse files
authored
Merge branch 'main' into thread-safe-pattern-filter
2 parents 97f1cc0 + 42a61a9 commit 69f7507

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,36 +240,36 @@
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>org.junit.jupiter</groupId>
247247
<artifactId>junit-jupiter-api</artifactId>
248-
<version>5.7.1</version>
248+
<version>6.0.1</version>
249249
<scope>test</scope>
250250
</dependency>
251251
<dependency>
252252
<groupId>org.junit.jupiter</groupId>
253253
<artifactId>junit-jupiter-engine</artifactId>
254-
<version>5.7.1</version>
254+
<version>6.0.1</version>
255255
<scope>test</scope>
256256
</dependency>
257257
<dependency>
258258
<groupId>org.junit.jupiter</groupId>
259259
<artifactId>junit-jupiter-params</artifactId>
260-
<version>5.7.1</version>
260+
<version>6.0.1</version>
261261
<scope>test</scope>
262262
</dependency>
263263
<dependency>
264264
<groupId>org.assertj</groupId>
265265
<artifactId>assertj-core</artifactId>
266-
<version>3.27.3</version>
266+
<version>3.27.6</version>
267267
<scope>test</scope>
268268
</dependency>
269269
<dependency>
270270
<groupId>org.projectlombok</groupId>
271271
<artifactId>lombok</artifactId>
272-
<version>1.18.38</version>
272+
<version>1.18.42</version>
273273
<scope>provided</scope>
274274
</dependency>
275275
<dependency>

0 commit comments

Comments
 (0)