|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-mac</artifactId> |
8 | | - <version>1.2.2</version> |
| 8 | + <version>1.2.3</version> |
9 | 9 |
|
10 | 10 | <name>Cryptomator Integrations for macOS</name> |
11 | 11 | <description>Provides optional macOS services used by Cryptomator</description> |
|
30 | 30 | <project.jdk.version>17</project.jdk.version> |
31 | 31 |
|
32 | 32 | <!-- runtime dependencies --> |
33 | | - <api.version>1.2.0</api.version> |
34 | | - <slf4j.version>1.7.36</slf4j.version> |
| 33 | + <api.version>1.3.0</api.version> |
| 34 | + <slf4j.version>2.0.11</slf4j.version> |
35 | 35 |
|
36 | 36 | <!-- test dependencies --> |
37 | | - <junit.jupiter.version>5.8.2</junit.jupiter.version> |
38 | | - <mockito.version>4.4.0</mockito.version> |
| 37 | + <junit.jupiter.version>5.10.1</junit.jupiter.version> |
| 38 | + <mockito.version>5.10.0</mockito.version> |
39 | 39 |
|
40 | 40 | <!-- build plugin dependencies --> |
41 | | - <dependency-check.version>8.1.0</dependency-check.version> |
42 | | - <nexus-staging.version>1.6.8</nexus-staging.version> |
| 41 | + <dependency-check.version>9.0.9</dependency-check.version> |
| 42 | + <nexus-staging.version>1.6.13</nexus-staging.version> |
43 | 43 | </properties> |
44 | 44 |
|
45 | 45 | <licenses> |
|
88 | 88 | <plugin> |
89 | 89 | <groupId>org.apache.maven.plugins</groupId> |
90 | 90 | <artifactId>maven-clean-plugin</artifactId> |
91 | | - <version>3.1.0</version> |
| 91 | + <version>3.3.2</version> |
92 | 92 | <configuration> |
93 | 93 | <filesets> |
94 | 94 | <fileset> |
|
104 | 104 | <plugin> |
105 | 105 | <groupId>org.apache.maven.plugins</groupId> |
106 | 106 | <artifactId>maven-compiler-plugin</artifactId> |
107 | | - <version>3.10.1</version> |
| 107 | + <version>3.12.1</version> |
108 | 108 | <configuration> |
109 | 109 | <compilerArgs> |
110 | 110 | <arg>-h</arg> |
|
116 | 116 | <plugin> |
117 | 117 | <groupId>org.apache.maven.plugins</groupId> |
118 | 118 | <artifactId>maven-enforcer-plugin</artifactId> |
119 | | - <version>3.0.0</version> |
| 119 | + <version>3.4.1</version> |
120 | 120 | <executions> |
121 | 121 | <execution> |
122 | 122 | <id>check-preconditions</id> |
|
145 | 145 | <plugin> |
146 | 146 | <groupId>org.codehaus.mojo</groupId> |
147 | 147 | <artifactId>exec-maven-plugin</artifactId> |
148 | | - <version>3.0.0</version> |
| 148 | + <version>3.1.1</version> |
149 | 149 | <executions> |
150 | 150 | <execution> |
151 | 151 | <goals> |
|
175 | 175 | </plugin> |
176 | 176 | <plugin> |
177 | 177 | <artifactId>maven-resources-plugin</artifactId> |
178 | | - <version>3.2.0</version> |
| 178 | + <version>3.3.1</version> |
179 | 179 | <executions> |
180 | 180 | <execution> |
181 | 181 | <goals> |
|
199 | 199 | <plugin> |
200 | 200 | <groupId>org.apache.maven.plugins</groupId> |
201 | 201 | <artifactId>maven-surefire-plugin</artifactId> |
202 | | - <version>3.0.0-M5</version> |
| 202 | + <version>3.2.5</version> |
203 | 203 | </plugin> |
204 | 204 | <plugin> |
205 | 205 | <artifactId>maven-source-plugin</artifactId> |
206 | | - <version>3.2.1</version> |
| 206 | + <version>3.3.0</version> |
207 | 207 | <executions> |
208 | 208 | <execution> |
209 | 209 | <id>attach-sources</id> |
|
215 | 215 | </plugin> |
216 | 216 | <plugin> |
217 | 217 | <artifactId>maven-javadoc-plugin</artifactId> |
218 | | - <version>3.3.2</version> |
| 218 | + <version>3.6.3</version> |
219 | 219 | <executions> |
220 | 220 | <execution> |
221 | 221 | <id>attach-javadocs</id> |
|
281 | 281 | <artifactId>dependency-check-maven</artifactId> |
282 | 282 | <version>${dependency-check.version}</version> |
283 | 283 | <configuration> |
284 | | - <cveValidForHours>24</cveValidForHours> |
| 284 | + <nvdValidForHours>24</nvdValidForHours> |
285 | 285 | <failBuildOnCVSS>0</failBuildOnCVSS> |
286 | 286 | <skipTestScope>true</skipTestScope> |
287 | | - <cveStartYear>2019</cveStartYear> |
288 | 287 | <detail>true</detail> |
289 | 288 | <suppressionFile>suppression.xml</suppressionFile> |
| 289 | + <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey> |
290 | 290 | </configuration> |
291 | 291 | <executions> |
292 | 292 | <execution> |
293 | 293 | <goals> |
294 | 294 | <goal>check</goal> |
295 | 295 | </goals> |
| 296 | + <phase>validate</phase> |
296 | 297 | </execution> |
297 | 298 | </executions> |
298 | 299 | </plugin> |
|
306 | 307 | <plugins> |
307 | 308 | <plugin> |
308 | 309 | <artifactId>maven-gpg-plugin</artifactId> |
309 | | - <version>3.0.1</version> |
| 310 | + <version>3.1.0</version> |
310 | 311 | <executions> |
311 | 312 | <execution> |
312 | 313 | <id>sign-artifacts</id> |
|
367 | 368 | <plugin> |
368 | 369 | <groupId>org.apache.maven.plugins</groupId> |
369 | 370 | <artifactId>maven-deploy-plugin</artifactId> |
370 | | - <version>3.1.0</version> |
| 371 | + <version>3.1.1</version> |
371 | 372 | </plugin> |
372 | 373 | </plugins> |
373 | 374 | </build> |
|
0 commit comments