|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.cryptomator</groupId> |
5 | 5 | <artifactId>siv-mode</artifactId> |
6 | | - <version>1.4.3</version> |
| 6 | + <version>1.4.4</version> |
7 | 7 |
|
8 | 8 | <name>SIV Mode</name> |
9 | 9 | <description>RFC 5297 SIV mode: deterministic authenticated encryption</description> |
|
37 | 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
38 | 38 |
|
39 | 39 | <!-- dependencies --> |
40 | | - <bouncycastle.version>1.69</bouncycastle.version> |
| 40 | + <bouncycastle.version>1.70</bouncycastle.version> |
41 | 41 |
|
42 | 42 | <!-- test dependencies --> |
43 | | - <junit.version>5.7.2</junit.version> |
44 | | - <mockito.version>3.11.2</mockito.version> |
45 | | - <jmh.version>1.32</jmh.version> |
| 43 | + <junit.version>5.8.2</junit.version> |
| 44 | + <mockito.version>3.12.4</mockito.version> |
| 45 | + <jmh.version>1.34</jmh.version> |
46 | 46 | <hamcrest.version>2.2</hamcrest.version> |
47 | | - <guava.version>30.1.1-jre</guava.version> |
| 47 | + <guava.version>31.0.1-jre</guava.version> |
48 | 48 | </properties> |
49 | 49 |
|
50 | 50 | <dependencies> |
|
100 | 100 | <plugin> |
101 | 101 | <groupId>org.apache.maven.plugins</groupId> |
102 | 102 | <artifactId>maven-enforcer-plugin</artifactId> |
103 | | - <version>3.0.0-M3</version> |
| 103 | + <version>3.0.0</version> |
104 | 104 | <executions> |
105 | 105 | <execution> |
106 | 106 | <id>enforce-java</id> |
|
120 | 120 | </plugin> |
121 | 121 | <plugin> |
122 | 122 | <artifactId>maven-compiler-plugin</artifactId> |
123 | | - <version>3.8.1</version> |
| 123 | + <version>3.9.0</version> |
124 | 124 | <configuration> |
125 | 125 | <release>8</release> |
126 | 126 | <encoding>UTF-8</encoding> |
|
150 | 150 | </plugin> |
151 | 151 | <plugin> |
152 | 152 | <artifactId>maven-jar-plugin</artifactId> |
153 | | - <version>3.2.0</version> |
| 153 | + <version>3.2.2</version> |
154 | 154 | <configuration> |
155 | 155 | <archive> |
156 | 156 | <manifestEntries> |
|
174 | 174 | </plugin> |
175 | 175 | <plugin> |
176 | 176 | <artifactId>maven-javadoc-plugin</artifactId> |
177 | | - <version>3.3.0</version> |
| 177 | + <version>3.3.1</version> |
178 | 178 | <executions> |
179 | 179 | <execution> |
180 | 180 | <id>attach-javadocs</id> |
|
235 | 235 | <plugin> |
236 | 236 | <groupId>org.owasp</groupId> |
237 | 237 | <artifactId>dependency-check-maven</artifactId> |
238 | | - <version>6.2.2</version> |
| 238 | + <version>6.5.3</version> |
239 | 239 | <configuration> |
240 | 240 | <cveValidForHours>24</cveValidForHours> |
241 | 241 | <failBuildOnCVSS>0</failBuildOnCVSS> |
|
279 | 279 | </build> |
280 | 280 | </profile> |
281 | 281 |
|
282 | | - <profile> |
| 282 | + <profile> |
283 | 283 | <id>sign</id> |
284 | 284 | <build> |
285 | 285 | <plugins> |
|
312 | 312 | <repository> |
313 | 313 | <id>ossrh</id> |
314 | 314 | <name>Maven Central</name> |
315 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 315 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
316 | 316 | </repository> |
317 | 317 | </distributionManagement> |
318 | 318 | <build> |
|
324 | 324 | <extensions>true</extensions> |
325 | 325 | <configuration> |
326 | 326 | <serverId>ossrh</serverId> |
327 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 327 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
328 | 328 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
329 | 329 | </configuration> |
330 | 330 | </plugin> |
|
0 commit comments