|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>org.cryptomator</groupId> |
4 | 4 | <artifactId>cryptofs</artifactId> |
5 | | - <version>2.7.2</version> |
| 5 | + <version>2.9.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> |
9 | 9 |
|
10 | 10 | <scm> |
11 | 11 | < connection>scm:git: [email protected]:cryptomator/cryptofs.git</ connection> |
12 | 12 | < developerConnection>scm:git: [email protected]:cryptomator/cryptofs.git</ developerConnection> |
13 | | - <url>git@github.com:cryptomator/cryptofs.git</url> |
| 13 | + <url>https://github.com/cryptomator/cryptofs</url> |
14 | 14 | </scm> |
15 | 15 |
|
16 | 16 | <properties> |
17 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | 18 | <maven.compiler.release>21</maven.compiler.release> |
19 | 19 |
|
20 | 20 | <!-- dependencies --> |
21 | | - <cryptolib.version>2.2.0</cryptolib.version> |
22 | | - <jwt.version>4.4.0</jwt.version> |
23 | | - <dagger.version>2.51.1</dagger.version> |
24 | | - <guava.version>33.2.1-jre</guava.version> |
25 | | - <caffeine.version>3.1.8</caffeine.version> |
26 | | - <slf4j.version>2.0.16</slf4j.version> |
| 21 | + <cryptolib.version>2.2.1</cryptolib.version> |
| 22 | + <jwt.version>4.5.0</jwt.version> |
| 23 | + <dagger.version>2.55</dagger.version> |
| 24 | + <guava.version>33.4.8-jre</guava.version> |
| 25 | + <caffeine.version>3.2.0</caffeine.version> |
| 26 | + <slf4j.version>2.0.17</slf4j.version> |
27 | 27 |
|
28 | 28 | <!-- test dependencies --> |
29 | | - <junit.jupiter.version>5.11.3</junit.jupiter.version> |
30 | | - <mockito.version>5.14.2</mockito.version> |
| 29 | + <junit.jupiter.version>5.12.2</junit.jupiter.version> |
| 30 | + <jmh.version>1.37</jmh.version> |
| 31 | + <mockito.version>5.17.0</mockito.version> |
31 | 32 | <hamcrest.version>3.0</hamcrest.version> |
32 | 33 | <jimfs.version>1.3.0</jimfs.version> |
33 | 34 |
|
34 | 35 | <!-- build plugin dependencies --> |
35 | | - <mvn-compiler.version>3.13.0</mvn-compiler.version> |
36 | | - <mvn-dependency.version>3.7.1</mvn-dependency.version> |
37 | | - <mvn-surefire.version>3.5.1</mvn-surefire.version> |
| 36 | + <mvn-compiler.version>3.14.0</mvn-compiler.version> |
| 37 | + <mvn-dependency.version>3.8.1</mvn-dependency.version> |
| 38 | + <mvn-surefire.version>3.5.3</mvn-surefire.version> |
38 | 39 | <mvn-jar.version>3.4.2</mvn-jar.version> |
39 | 40 | <mvn-source.version>3.3.1</mvn-source.version> |
40 | | - <mvn-javadoc.version>3.10.1</mvn-javadoc.version> |
| 41 | + <mvn-javadoc.version>3.11.2</mvn-javadoc.version> |
41 | 42 | <mvn-gpg.version>3.2.7</mvn-gpg.version> |
42 | 43 |
|
43 | | - <dependency-check.version>11.0.0</dependency-check.version> |
44 | | - <junit-tree-reporter.version>1.3.0</junit-tree-reporter.version> |
45 | | - <jacoco.version>0.8.12</jacoco.version> |
46 | | - <nexus-staging.version>1.7.0</nexus-staging.version> |
| 44 | + <dependency-check.version>12.1.1</dependency-check.version> |
| 45 | + <junit-tree-reporter.version>1.4.0</junit-tree-reporter.version> |
| 46 | + <jacoco.version>0.8.13</jacoco.version> |
| 47 | + <central-publishing.version>0.7.0</central-publishing.version> |
47 | 48 |
|
48 | 49 | <!-- Property used by surefire to determine jacoco engine --> |
49 | 50 | <surefire.jacoco.args></surefire.jacoco.args> |
|
90 | 91 | <artifactId>dagger</artifactId> |
91 | 92 | <version>${dagger.version}</version> |
92 | 93 | </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>jakarta.inject</groupId> |
| 96 | + <artifactId>jakarta.inject-api</artifactId> |
| 97 | + <version>2.0.1.MR</version> |
| 98 | + </dependency> |
93 | 99 | <dependency> |
94 | 100 | <groupId>com.google.guava</groupId> |
95 | 101 | <artifactId>guava</artifactId> |
|
123 | 129 | <version>${junit.jupiter.version}</version> |
124 | 130 | <scope>test</scope> |
125 | 131 | </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>org.openjdk.jmh</groupId> |
| 134 | + <artifactId>jmh-core</artifactId> |
| 135 | + <version>${jmh.version}</version> |
| 136 | + <scope>test</scope> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>org.openjdk.jmh</groupId> |
| 140 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 141 | + <version>${jmh.version}</version> |
| 142 | + <scope>provided</scope> <!-- only required during compilation --> |
| 143 | + </dependency> |
126 | 144 | <dependency> |
127 | 145 | <groupId>org.mockito</groupId> |
128 | 146 | <artifactId>mockito-core</artifactId> |
|
163 | 181 | <artifactId>dagger-compiler</artifactId> |
164 | 182 | <version>${dagger.version}</version> |
165 | 183 | </path> |
| 184 | + <path> |
| 185 | + <groupId>org.openjdk.jmh</groupId> |
| 186 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 187 | + <version>${jmh.version}</version> |
| 188 | + </path> |
166 | 189 | </annotationProcessorPaths> |
| 190 | + <compilerArgs>-Adagger.useBindingGraphFix=ENABLED</compilerArgs> |
167 | 191 | </configuration> |
168 | 192 | </plugin> |
169 | 193 | <plugin> |
|
200 | 224 | <statelessTestsetInfoReporter |
201 | 225 | implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter"> |
202 | 226 | </statelessTestsetInfoReporter> |
203 | | - <argLine>@{surefire.jacoco.args} -javaagent:${net.bytebuddy:byte-buddy-agent:jar}</argLine> |
| 227 | + <argLine>@{surefire.jacoco.args} -javaagent:${org.mockito:mockito-core:jar}</argLine> |
204 | 228 | </configuration> |
205 | 229 | </plugin> |
206 | 230 | <plugin> |
|
348 | 372 |
|
349 | 373 | <profile> |
350 | 374 | <id>deploy-central</id> |
351 | | - <distributionManagement> |
352 | | - <repository> |
353 | | - <id>ossrh</id> |
354 | | - <name>Maven Central</name> |
355 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
356 | | - </repository> |
357 | | - </distributionManagement> |
358 | 375 | <build> |
359 | 376 | <plugins> |
360 | 377 | <plugin> |
361 | | - <groupId>org.sonatype.plugins</groupId> |
362 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
363 | | - <version>${nexus-staging.version}</version> |
| 378 | + <groupId>org.sonatype.central</groupId> |
| 379 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 380 | + <version>${central-publishing.version}</version> |
364 | 381 | <extensions>true</extensions> |
365 | 382 | <configuration> |
366 | | - <serverId>ossrh</serverId> |
367 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
368 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 383 | + <publishingServerId>central</publishingServerId> |
| 384 | + <autoPublish>true</autoPublish> |
369 | 385 | </configuration> |
370 | 386 | </plugin> |
371 | 387 | </plugins> |
|
0 commit comments