|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>org.cryptomator</groupId> |
4 | 4 | <artifactId>cryptofs</artifactId> |
5 | | - <version>2.6.9</version> |
| 5 | + <version>2.7.0</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> |
|
15 | 15 |
|
16 | 16 | <properties> |
17 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | | - <maven.compiler.release>17</maven.compiler.release> |
| 18 | + <maven.compiler.release>21</maven.compiler.release> |
19 | 19 |
|
20 | 20 | <!-- dependencies --> |
21 | | - <cryptolib.version>2.1.2</cryptolib.version> |
| 21 | + <cryptolib.version>2.2.0</cryptolib.version> |
22 | 22 | <jwt.version>4.4.0</jwt.version> |
23 | | - <dagger.version>2.49</dagger.version> |
24 | | - <guava.version>32.1.3-jre</guava.version> |
| 23 | + <dagger.version>2.51.1</dagger.version> |
| 24 | + <guava.version>33.2.1-jre</guava.version> |
25 | 25 | <caffeine.version>3.1.8</caffeine.version> |
26 | | - <slf4j.version>2.0.12</slf4j.version> |
| 26 | + <slf4j.version>2.0.13</slf4j.version> |
27 | 27 |
|
28 | 28 | <!-- test dependencies --> |
29 | | - <junit.jupiter.version>5.10.2</junit.jupiter.version> |
30 | | - <mockito.version>5.2.0</mockito.version> |
31 | | - <hamcrest.version>2.2</hamcrest.version> |
| 29 | + <junit.jupiter.version>5.10.3</junit.jupiter.version> |
| 30 | + <mockito.version>5.12.0</mockito.version> |
| 31 | + <hamcrest.version>3.0</hamcrest.version> |
32 | 32 | <jimfs.version>1.3.0</jimfs.version> |
33 | 33 |
|
34 | 34 | <!-- build plugin dependencies --> |
35 | | - <dependency-check.version>9.0.9</dependency-check.version> |
36 | | - <junit-tree-reporter.version>1.2.1</junit-tree-reporter.version> |
37 | | - <jacoco.version>0.8.11</jacoco.version> |
38 | | - <nexus-staging.version>1.6.13</nexus-staging.version> |
| 35 | + <dependency-check.version>10.0.3</dependency-check.version> |
| 36 | + <junit-tree-reporter.version>1.3.0</junit-tree-reporter.version> |
| 37 | + <jacoco.version>0.8.12</jacoco.version> |
| 38 | + <nexus-staging.version>1.7.0</nexus-staging.version> |
39 | 39 | </properties> |
40 | 40 |
|
41 | 41 | <licenses> |
|
114 | 114 | </dependency> |
115 | 115 | <dependency> |
116 | 116 | <groupId>org.mockito</groupId> |
117 | | - <artifactId>mockito-inline</artifactId> |
| 117 | + <artifactId>mockito-core</artifactId> |
118 | 118 | <version>${mockito.version}</version> |
119 | 119 | <scope>test</scope> |
120 | 120 | </dependency> |
|
143 | 143 | <plugin> |
144 | 144 | <groupId>org.apache.maven.plugins</groupId> |
145 | 145 | <artifactId>maven-compiler-plugin</artifactId> |
146 | | - <version>3.12.1</version> |
| 146 | + <version>3.13.0</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.5</version> |
| 161 | + <version>3.3.1</version> |
162 | 162 | <dependencies> |
163 | 163 | <dependency> |
164 | 164 | <groupId>me.fabriciorby</groupId> |
|
181 | 181 | <plugin> |
182 | 182 | <groupId>org.apache.maven.plugins</groupId> |
183 | 183 | <artifactId>maven-jar-plugin</artifactId> |
184 | | - <version>3.3.0</version> |
| 184 | + <version>3.4.2</version> |
185 | 185 | </plugin> |
186 | 186 | <plugin> |
187 | 187 | <artifactId>maven-source-plugin</artifactId> |
188 | | - <version>3.3.0</version> |
| 188 | + <version>3.3.1</version> |
189 | 189 | <executions> |
190 | 190 | <execution> |
191 | 191 | <id>attach-sources</id> |
|
197 | 197 | </plugin> |
198 | 198 | <plugin> |
199 | 199 | <artifactId>maven-javadoc-plugin</artifactId> |
200 | | - <version>3.6.3</version> |
| 200 | + <version>3.8.0</version> |
201 | 201 | <executions> |
202 | 202 | <execution> |
203 | 203 | <id>attach-javadocs</id> |
|
252 | 252 | <skipTestScope>true</skipTestScope> |
253 | 253 | <detail>true</detail> |
254 | 254 | <suppressionFile>suppression.xml</suppressionFile> |
255 | | - <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey> |
| 255 | + <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> |
256 | 256 | </configuration> |
257 | 257 | <executions> |
258 | 258 | <execution> |
|
300 | 300 | <plugins> |
301 | 301 | <plugin> |
302 | 302 | <artifactId>maven-gpg-plugin</artifactId> |
303 | | - <version>3.1.0</version> |
| 303 | + <version>3.2.4</version> |
304 | 304 | <executions> |
305 | 305 | <execution> |
306 | 306 | <id>sign-artifacts</id> |
|
309 | 309 | <goal>sign</goal> |
310 | 310 | </goals> |
311 | 311 | <configuration> |
312 | | - <gpgArguments> |
313 | | - <arg>--pinentry-mode</arg> |
314 | | - <arg>loopback</arg> |
315 | | - </gpgArguments> |
| 312 | + <signer>bc</signer> |
316 | 313 | </configuration> |
317 | 314 | </execution> |
318 | 315 | </executions> |
|
0 commit comments