|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>org.cryptomator</groupId> |
4 | 4 | <artifactId>cryptofs</artifactId> |
5 | | - <version>2.6.8</version> |
| 5 | + <version>2.6.9</version> |
6 | 6 | <name>Cryptomator Crypto Filesystem</name> |
7 | 7 | <description>This library provides the Java filesystem provider used by Cryptomator.</description> |
8 | 8 | <url>https://github.com/cryptomator/cryptofs</url> |
|
20 | 20 | <!-- dependencies --> |
21 | 21 | <cryptolib.version>2.1.2</cryptolib.version> |
22 | 22 | <jwt.version>4.4.0</jwt.version> |
23 | | - <dagger.version>2.48.1</dagger.version> |
| 23 | + <dagger.version>2.49</dagger.version> |
24 | 24 | <guava.version>32.1.3-jre</guava.version> |
25 | 25 | <caffeine.version>3.1.8</caffeine.version> |
26 | | - <slf4j.version>2.0.9</slf4j.version> |
| 26 | + <slf4j.version>2.0.12</slf4j.version> |
27 | 27 |
|
28 | 28 | <!-- test dependencies --> |
29 | | - <junit.jupiter.version>5.10.1</junit.jupiter.version> |
| 29 | + <junit.jupiter.version>5.10.2</junit.jupiter.version> |
30 | 30 | <mockito.version>5.2.0</mockito.version> |
31 | 31 | <hamcrest.version>2.2</hamcrest.version> |
32 | 32 | <jimfs.version>1.3.0</jimfs.version> |
33 | 33 |
|
34 | 34 | <!-- build plugin dependencies --> |
35 | | - <dependency-check.version>9.0.1</dependency-check.version> |
| 35 | + <dependency-check.version>9.0.9</dependency-check.version> |
36 | 36 | <junit-tree-reporter.version>1.2.1</junit-tree-reporter.version> |
37 | 37 | <jacoco.version>0.8.11</jacoco.version> |
38 | 38 | <nexus-staging.version>1.6.13</nexus-staging.version> |
|
143 | 143 | <plugin> |
144 | 144 | <groupId>org.apache.maven.plugins</groupId> |
145 | 145 | <artifactId>maven-compiler-plugin</artifactId> |
146 | | - <version>3.11.0</version> |
| 146 | + <version>3.12.1</version> |
147 | 147 | <configuration> |
148 | 148 | <showWarnings>true</showWarnings> |
149 | 149 | <annotationProcessorPaths> |
|
158 | 158 | <plugin> |
159 | 159 | <groupId>org.apache.maven.plugins</groupId> |
160 | 160 | <artifactId>maven-surefire-plugin</artifactId> |
161 | | - <version>3.2.2</version> |
| 161 | + <version>3.2.5</version> |
162 | 162 | <dependencies> |
163 | 163 | <dependency> |
164 | 164 | <groupId>me.fabriciorby</groupId> |
|
197 | 197 | </plugin> |
198 | 198 | <plugin> |
199 | 199 | <artifactId>maven-javadoc-plugin</artifactId> |
200 | | - <version>3.6.2</version> |
| 200 | + <version>3.6.3</version> |
201 | 201 | <executions> |
202 | 202 | <execution> |
203 | 203 | <id>attach-javadocs</id> |
|
247 | 247 | <artifactId>dependency-check-maven</artifactId> |
248 | 248 | <version>${dependency-check.version}</version> |
249 | 249 | <configuration> |
250 | | - <cveValidForHours>24</cveValidForHours> |
| 250 | + <nvdValidForHours>24</nvdValidForHours> |
251 | 251 | <failBuildOnCVSS>0</failBuildOnCVSS> |
252 | 252 | <skipTestScope>true</skipTestScope> |
253 | 253 | <detail>true</detail> |
254 | 254 | <suppressionFile>suppression.xml</suppressionFile> |
| 255 | + <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey> |
255 | 256 | </configuration> |
256 | 257 | <executions> |
257 | 258 | <execution> |
258 | 259 | <goals> |
259 | 260 | <goal>check</goal> |
260 | 261 | </goals> |
| 262 | + <phase>validate</phase> |
261 | 263 | </execution> |
262 | 264 | </executions> |
263 | 265 | </plugin> |
|
0 commit comments