|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>org.cryptomator</groupId>
|
5 | 5 | <artifactId>siv-mode</artifactId>
|
6 |
| - <version>1.2.0</version> |
| 6 | + <version>1.2.1</version> |
7 | 7 |
|
8 | 8 | <name>SIV Mode</name>
|
9 | 9 | <description>RFC 5297 SIV mode: deterministic authenticated encryption</description>
|
|
41 | 41 | <dependency>
|
42 | 42 | <groupId>org.bouncycastle</groupId>
|
43 | 43 | <artifactId>bcprov-jdk15on</artifactId>
|
44 |
| - <version>1.55</version> |
| 44 | + <version>1.56</version> |
45 | 45 | <!-- see maven-shade-plugin; we don't want this as a transitive dependency in other projects -->
|
46 | 46 | <optional>true</optional>
|
47 | 47 | </dependency>
|
|
56 | 56 | <dependency>
|
57 | 57 | <groupId>org.mockito</groupId>
|
58 | 58 | <artifactId>mockito-core</artifactId>
|
59 |
| - <version>1.10.19</version> |
| 59 | + <version>2.7.12</version> |
60 | 60 | <scope>test</scope>
|
61 | 61 | </dependency>
|
62 | 62 | <dependency>
|
63 | 63 | <groupId>org.openjdk.jmh</groupId>
|
64 | 64 | <artifactId>jmh-core</artifactId>
|
65 |
| - <version>1.12</version> |
| 65 | + <version>1.17.5</version> |
66 | 66 | <scope>test</scope>
|
67 | 67 | </dependency>
|
68 | 68 | <dependency>
|
69 | 69 | <groupId>org.openjdk.jmh</groupId>
|
70 | 70 | <artifactId>jmh-generator-annprocess</artifactId>
|
71 |
| - <version>1.12</version> |
| 71 | + <version>1.17.5</version> |
72 | 72 | <scope>test</scope>
|
73 | 73 | </dependency>
|
74 | 74 | </dependencies>
|
75 | 75 |
|
76 | 76 | <build>
|
77 | 77 | <plugins>
|
78 | 78 | <plugin>
|
79 |
| - <groupId>org.apache.maven.plugins</groupId> |
80 | 79 | <artifactId>maven-compiler-plugin</artifactId>
|
81 |
| - <version>3.5.1</version> |
| 80 | + <version>3.6.1</version> |
82 | 81 | <configuration>
|
83 | 82 | <source>1.7</source>
|
84 | 83 | <target>1.7</target>
|
85 | 84 | </configuration>
|
86 | 85 | </plugin>
|
87 | 86 | <plugin>
|
88 |
| - <groupId>org.apache.maven.plugins</groupId> |
89 | 87 | <artifactId>maven-jar-plugin</artifactId>
|
90 |
| - <version>2.6</version> |
| 88 | + <version>3.0.2</version> |
91 | 89 | <configuration>
|
92 | 90 | <archive>
|
93 | 91 | <manifestEntries>
|
|
97 | 95 | </configuration>
|
98 | 96 | </plugin>
|
99 | 97 | <plugin>
|
100 |
| - <groupId>org.apache.maven.plugins</groupId> |
101 | 98 | <artifactId>maven-shade-plugin</artifactId>
|
102 |
| - <version>2.4.3</version> |
| 99 | + <version>3.0.0</version> |
103 | 100 | <executions>
|
104 | 101 | <execution>
|
105 | 102 | <phase>package</phase>
|
|
139 | 136 | <plugin>
|
140 | 137 | <groupId>org.sonatype.plugins</groupId>
|
141 | 138 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
142 |
| - <version>1.6.7</version> |
| 139 | + <version>1.6.8</version> |
143 | 140 | <extensions>true</extensions>
|
144 | 141 | <configuration>
|
145 | 142 | <serverId>ossrh</serverId>
|
|
158 | 155 | <plugin>
|
159 | 156 | <groupId>org.owasp</groupId>
|
160 | 157 | <artifactId>dependency-check-maven</artifactId>
|
161 |
| - <version>1.4.3</version> |
| 158 | + <version>1.4.5</version> |
162 | 159 | <configuration>
|
163 | 160 | <cveValidForHours>24</cveValidForHours>
|
164 | 161 | <failBuildOnCVSS>0</failBuildOnCVSS>
|
|
181 | 178 | <dependency>
|
182 | 179 | <groupId>com.codacy</groupId>
|
183 | 180 | <artifactId>codacy-coverage-reporter</artifactId>
|
184 |
| - <version>1.0.10</version> |
| 181 | + <version>1.0.13</version> |
185 | 182 | <classifier>assembly</classifier>
|
186 | 183 | <exclusions>
|
187 | 184 | <exclusion>
|
|
196 | 193 | <plugin>
|
197 | 194 | <groupId>org.jacoco</groupId>
|
198 | 195 | <artifactId>jacoco-maven-plugin</artifactId>
|
199 |
| - <version>0.7.7.201606060606</version> |
| 196 | + <version>0.7.9</version> |
200 | 197 | <executions>
|
201 | 198 | <execution>
|
202 | 199 | <id>prepare-agent</id>
|
|
247 | 244 | <build>
|
248 | 245 | <plugins>
|
249 | 246 | <plugin>
|
250 |
| - <groupId>org.apache.maven.plugins</groupId> |
251 | 247 | <artifactId>maven-source-plugin</artifactId>
|
252 | 248 | <version>3.0.1</version>
|
253 | 249 | <executions>
|
|
260 | 256 | </executions>
|
261 | 257 | </plugin>
|
262 | 258 | <plugin>
|
263 |
| - <groupId>org.apache.maven.plugins</groupId> |
264 | 259 | <artifactId>maven-javadoc-plugin</artifactId>
|
265 | 260 | <version>2.10.4</version>
|
266 | 261 | <executions>
|
|
273 | 268 | </executions>
|
274 | 269 | </plugin>
|
275 | 270 | <plugin>
|
276 |
| - <groupId>org.apache.maven.plugins</groupId> |
277 | 271 | <artifactId>maven-gpg-plugin</artifactId>
|
278 | 272 | <version>1.6</version>
|
279 | 273 | <executions>
|
|
289 | 283 | <plugin>
|
290 | 284 | <groupId>org.sonatype.plugins</groupId>
|
291 | 285 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
292 |
| - <version>1.6.7</version> |
| 286 | + <version>1.6.8</version> |
293 | 287 | <extensions>true</extensions>
|
294 | 288 | <configuration>
|
295 | 289 | <serverId>ossrh</serverId>
|
|
0 commit comments