Skip to content

Commit de6a0b1

Browse files
committed
Update maven dependencies
1 parent 979c9a5 commit de6a0b1

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

pom.xml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
<api.version>1.1.0</api.version>
5353
<keepassxc-proxy.version>1.2.0</keepassxc-proxy.version>
5454
<guava.version>31.1-jre</guava.version>
55-
<slf4j.version>2.0.3</slf4j.version>
56-
<junit.version>5.9.1</junit.version>
55+
<slf4j.version>2.0.6</slf4j.version>
56+
<junit.version>5.9.2</junit.version>
5757
</properties>
5858

5959
<dependencies>
@@ -109,47 +109,47 @@
109109
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
110110
<plugin>
111111
<artifactId>maven-clean-plugin</artifactId>
112-
<version>3.1.0</version>
112+
<version>3.2.0</version>
113113
</plugin>
114114
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
115115
<plugin>
116116
<artifactId>maven-resources-plugin</artifactId>
117-
<version>3.1.0</version>
117+
<version>3.3.0</version>
118118
<configuration>
119119
<includeEmptyDirs>false</includeEmptyDirs>
120120
</configuration>
121121
</plugin>
122122
<plugin>
123123
<artifactId>maven-compiler-plugin</artifactId>
124-
<version>3.8.1</version>
124+
<version>3.10.1</version>
125125
</plugin>
126126
<plugin>
127127
<artifactId>maven-surefire-plugin</artifactId>
128-
<version>3.0.0-M5</version>
128+
<version>3.0.0-M7</version>
129129
</plugin>
130130
<plugin>
131131
<artifactId>maven-jar-plugin</artifactId>
132-
<version>3.2.0</version>
132+
<version>3.3.0</version>
133133
<configuration>
134134
<skipIfEmpty>true</skipIfEmpty>
135135
</configuration>
136136
</plugin>
137137
<plugin>
138138
<artifactId>maven-install-plugin</artifactId>
139-
<version>3.0.0-M1</version>
139+
<version>3.0.1</version>
140140
</plugin>
141141
<plugin>
142142
<artifactId>maven-deploy-plugin</artifactId>
143-
<version>3.0.0-M1</version>
143+
<version>3.0.0</version>
144144
</plugin>
145145
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
146146
<plugin>
147147
<artifactId>maven-site-plugin</artifactId>
148-
<version>3.9.1</version>
148+
<version>3.12.1</version>
149149
</plugin>
150150
<plugin>
151151
<artifactId>maven-project-info-reports-plugin</artifactId>
152-
<version>3.1.1</version>
152+
<version>3.4.1</version>
153153
</plugin>
154154
</plugins>
155155
</pluginManagement>
@@ -158,7 +158,7 @@
158158
<plugin>
159159
<groupId>org.apache.maven.plugins</groupId>
160160
<artifactId>maven-compiler-plugin</artifactId>
161-
<version>3.8.1</version>
161+
<version>3.10.1</version>
162162
<configuration>
163163
<source>17</source>
164164
<target>17</target>
@@ -167,7 +167,7 @@
167167
<plugin>
168168
<groupId>org.apache.maven.plugins</groupId>
169169
<artifactId>maven-source-plugin</artifactId>
170-
<version>3.2.0</version>
170+
<version>3.2.1</version>
171171
<executions>
172172
<execution>
173173
<id>attach-sources</id>
@@ -180,7 +180,7 @@
180180
<plugin>
181181
<groupId>org.apache.maven.plugins</groupId>
182182
<artifactId>maven-javadoc-plugin</artifactId>
183-
<version>3.2.0</version>
183+
<version>3.4.1</version>
184184
<executions>
185185
<execution>
186186
<id>attach-javadocs</id>
@@ -195,7 +195,7 @@
195195
</plugin>
196196
<plugin>
197197
<artifactId>maven-shade-plugin</artifactId>
198-
<version>3.3.0</version>
198+
<version>3.4.1</version>
199199
<executions>
200200
<execution>
201201
<phase>package</phase>
@@ -208,7 +208,7 @@
208208
<plugin>
209209
<groupId>org.apache.maven.plugins</groupId>
210210
<artifactId>maven-gpg-plugin</artifactId>
211-
<version>1.6</version>
211+
<version>3.0.1</version>
212212
<executions>
213213
<execution>
214214
<id>sign-artifacts</id>
@@ -228,7 +228,7 @@
228228
<plugin>
229229
<groupId>org.sonatype.plugins</groupId>
230230
<artifactId>nexus-staging-maven-plugin</artifactId>
231-
<version>1.6.8</version>
231+
<version>1.6.13</version>
232232
<extensions>true</extensions>
233233
<configuration>
234234
<serverId>ossrh</serverId>
@@ -240,13 +240,13 @@
240240
<plugin>
241241
<groupId>org.apache.maven.plugins</groupId>
242242
<artifactId>maven-surefire-plugin</artifactId>
243-
<version>2.22.2</version>
243+
<version>3.0.0-M7</version>
244244
<dependencies>
245245
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
246246
<dependency>
247247
<groupId>org.junit.jupiter</groupId>
248248
<artifactId>junit-jupiter-engine</artifactId>
249-
<version>5.7.0</version>
249+
<version>5.9.2</version>
250250
</dependency>
251251
</dependencies>
252252
</plugin>
@@ -260,7 +260,7 @@
260260
<plugin>
261261
<groupId>org.apache.maven.plugins</groupId>
262262
<artifactId>maven-gpg-plugin</artifactId>
263-
<version>1.6</version>
263+
<version>3.0.1</version>
264264
<executions>
265265
<execution>
266266
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)