Skip to content

Commit a8bcb96

Browse files
committed
update dependencies and plugins
1 parent 05130f1 commit a8bcb96

File tree

1 file changed

+29
-54
lines changed

1 file changed

+29
-54
lines changed

pom.xml

+29-54
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,28 @@
4242
<dependency>
4343
<groupId>org.junit</groupId>
4444
<artifactId>junit-bom</artifactId>
45-
<version>5.9.1</version>
45+
<version>5.10.0</version>
4646
<type>pom</type>
4747
<scope>import</scope>
4848
</dependency>
4949
<dependency>
5050
<groupId>org.springframework</groupId>
5151
<artifactId>spring-framework-bom</artifactId>
52-
<version>5.3.24</version>
52+
<version>5.3.29</version>
5353
<type>pom</type>
5454
<scope>import</scope>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.oracle.database.jdbc</groupId>
5858
<artifactId>ojdbc-bom</artifactId>
59-
<version>21.7.0.0</version>
59+
<version>21.10.0.0</version>
6060
<type>pom</type>
6161
<scope>import</scope>
6262
</dependency>
6363
<dependency>
6464
<groupId>org.apache.logging.log4j</groupId>
6565
<artifactId>log4j-bom</artifactId>
66-
<version>2.19.0</version>
66+
<version>2.20.0</version>
6767
<type>pom</type>
6868
<scope>import</scope>
6969
</dependency>
@@ -111,13 +111,13 @@
111111
<dependency>
112112
<groupId>com.h2database</groupId>
113113
<artifactId>h2</artifactId>
114-
<version>2.1.214</version>
114+
<version>2.2.220</version>
115115
<scope>test</scope>
116116
</dependency>
117117
<dependency>
118118
<groupId>org.hsqldb</groupId>
119119
<artifactId>hsqldb</artifactId>
120-
<version>2.5.1</version>
120+
<version>2.5.2</version>
121121
<scope>test</scope>
122122
</dependency>
123123
<dependency>
@@ -143,13 +143,13 @@
143143
<dependency>
144144
<groupId>org.firebirdsql.jdbc</groupId>
145145
<artifactId>jaybird</artifactId>
146-
<version>4.0.8.java8</version>
146+
<version>5.0.2.java8</version>
147147
<scope>test</scope>
148148
</dependency>
149149
<dependency>
150150
<groupId>org.mockito</groupId>
151151
<artifactId>mockito-core</artifactId>
152-
<version>4.9.0</version>
152+
<version>5.4.0</version>
153153
<scope>test</scope>
154154
<exclusions>
155155
<exclusion>
@@ -161,7 +161,7 @@
161161
<dependency>
162162
<groupId>org.postgresql</groupId>
163163
<artifactId>postgresql</artifactId>
164-
<version>42.5.1</version>
164+
<version>42.6.0</version>
165165
<optional>true</optional>
166166
</dependency>
167167
<dependency>
@@ -178,19 +178,19 @@
178178
<dependency>
179179
<groupId>mysql</groupId>
180180
<artifactId>mysql-connector-java</artifactId>
181-
<version>8.0.31</version>
181+
<version>8.0.33</version>
182182
<scope>test</scope>
183183
</dependency>
184184
<dependency>
185185
<groupId>org.mariadb.jdbc</groupId>
186186
<artifactId>mariadb-java-client</artifactId>
187-
<version>3.1.0</version>
187+
<version>3.1.4</version>
188188
<scope>test</scope>
189189
</dependency>
190190
<dependency>
191191
<groupId>com.microsoft.sqlserver</groupId>
192192
<artifactId>mssql-jdbc</artifactId>
193-
<version>11.2.1.jre8</version>
193+
<version>12.4.0.jre8</version>
194194
<scope>test</scope>
195195
</dependency>
196196
<dependency>
@@ -309,7 +309,7 @@
309309
</executions>
310310
</plugin>
311311
<plugin>
312-
<groupId>org.jboss.jandex</groupId>
312+
<groupId>io.smallrye</groupId>
313313
<artifactId>jandex-maven-plugin</artifactId>
314314
<executions>
315315
<execution>
@@ -344,89 +344,64 @@
344344
<plugins>
345345
<plugin>
346346
<artifactId>maven-clean-plugin</artifactId>
347-
<version>3.2.0</version>
347+
<version>3.3.1</version>
348348
</plugin>
349349
<plugin>
350350
<artifactId>maven-compiler-plugin</artifactId>
351-
<version>3.10.1</version>
351+
<version>3.11.0</version>
352352
</plugin>
353353
<plugin>
354354
<artifactId>maven-deploy-plugin</artifactId>
355-
<version>2.8.2</version>
355+
<version>3.1.1</version>
356356
</plugin>
357357
<plugin>
358358
<artifactId>maven-failsafe-plugin</artifactId>
359-
<version>2.22.2</version>
359+
<version>3.1.2</version>
360360
</plugin>
361361
<plugin>
362362
<artifactId>maven-gpg-plugin</artifactId>
363-
<version>3.0.1</version>
363+
<version>3.1.0</version>
364364
</plugin>
365365
<plugin>
366366
<artifactId>maven-install-plugin</artifactId>
367-
<version>2.5.2</version>
367+
<version>3.1.1</version>
368368
</plugin>
369369
<plugin>
370370
<artifactId>maven-jar-plugin</artifactId>
371-
<version>3.1.1</version>
371+
<version>3.3.0</version>
372372
</plugin>
373373
<plugin>
374374
<artifactId>maven-javadoc-plugin</artifactId>
375-
<version>3.3.2</version>
375+
<version>3.5.0</version>
376376
</plugin>
377377
<plugin>
378-
<groupId>org.jboss.jandex</groupId>
378+
<groupId>io.smallrye</groupId>
379379
<artifactId>jandex-maven-plugin</artifactId>
380-
<version>1.2.2</version>
380+
<version>3.1.2</version>
381381
</plugin>
382382
<plugin>
383383
<artifactId>maven-resources-plugin</artifactId>
384-
<version>3.2.0</version>
384+
<version>3.3.1</version>
385385
</plugin>
386386
<plugin>
387387
<artifactId>maven-release-plugin</artifactId>
388-
<version>2.5.3</version>
388+
<version>3.0.1</version>
389389
</plugin>
390390
<plugin>
391391
<artifactId>maven-scm-plugin</artifactId>
392-
<version>1.12.2</version>
392+
<version>2.0.1</version>
393393
</plugin>
394394
<plugin>
395395
<artifactId>maven-site-plugin</artifactId>
396-
<version>3.11.0</version>
396+
<version>3.12.1</version>
397397
</plugin>
398398
<plugin>
399399
<artifactId>maven-source-plugin</artifactId>
400-
<version>3.2.1</version>
400+
<version>3.3.0</version>
401401
</plugin>
402402
<plugin>
403403
<artifactId>maven-surefire-plugin</artifactId>
404-
<version>2.22.2</version>
405-
</plugin>
406-
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
407-
<plugin>
408-
<groupId>org.eclipse.m2e</groupId>
409-
<artifactId>lifecycle-mapping</artifactId>
410-
<version>1.0.0</version>
411-
<configuration>
412-
<lifecycleMappingMetadata>
413-
<pluginExecutions>
414-
<pluginExecution>
415-
<pluginExecutionFilter>
416-
<groupId>codes.rafael.modulemaker</groupId>
417-
<artifactId>modulemaker-maven-plugin</artifactId>
418-
<versionRange>[1.6,)</versionRange>
419-
<goals>
420-
<goal>make-module</goal>
421-
</goals>
422-
</pluginExecutionFilter>
423-
<action>
424-
<ignore />
425-
</action>
426-
</pluginExecution>
427-
</pluginExecutions>
428-
</lifecycleMappingMetadata>
429-
</configuration>
404+
<version>3.1.2</version>
430405
</plugin>
431406
</plugins>
432407
</pluginManagement>

0 commit comments

Comments
 (0)