|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>org.cryptomator</groupId>
|
5 | 5 | <artifactId>siv-mode</artifactId>
|
6 |
| - <version>1.2.3</version> |
| 6 | + <version>1.3.0</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.57</version> |
| 44 | + <version>1.59</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>2.8.47</version> |
| 59 | + <version>2.16.0</version> |
60 | 60 | <scope>test</scope>
|
61 | 61 | </dependency>
|
62 | 62 | <dependency>
|
63 | 63 | <groupId>com.google.guava</groupId>
|
64 | 64 | <artifactId>guava</artifactId>
|
65 |
| - <version>23.6-jre</version> |
| 65 | + <version>24.0-jre</version> |
66 | 66 | <scope>test</scope>
|
67 | 67 | </dependency>
|
68 | 68 | <dependency>
|
69 | 69 | <groupId>org.openjdk.jmh</groupId>
|
70 | 70 | <artifactId>jmh-core</artifactId>
|
71 |
| - <version>1.19</version> |
| 71 | + <version>1.20</version> |
72 | 72 | <scope>test</scope>
|
73 | 73 | </dependency>
|
74 | 74 | <dependency>
|
75 | 75 | <groupId>org.openjdk.jmh</groupId>
|
76 | 76 | <artifactId>jmh-generator-annprocess</artifactId>
|
77 |
| - <version>1.19</version> |
| 77 | + <version>1.20</version> |
78 | 78 | <scope>test</scope>
|
79 | 79 | </dependency>
|
80 | 80 | </dependencies>
|
|
142 | 142 | </execution>
|
143 | 143 | </executions>
|
144 | 144 | </plugin>
|
| 145 | + <plugin> |
| 146 | + <groupId>org.moditect</groupId> |
| 147 | + <artifactId>moditect-maven-plugin</artifactId> |
| 148 | + <version>1.0.0.Alpha2</version> |
| 149 | + <executions> |
| 150 | + <execution> |
| 151 | + <id>add-module-infos</id> |
| 152 | + <phase>package</phase> |
| 153 | + <goals> |
| 154 | + <goal>add-module-info</goal> |
| 155 | + </goals> |
| 156 | + <configuration> |
| 157 | + <module> |
| 158 | + <moduleInfo> |
| 159 | + <name>org.cryptomator.siv</name> |
| 160 | + <exports> |
| 161 | + org.cryptomator.siv; |
| 162 | + </exports> |
| 163 | + </moduleInfo> |
| 164 | + </module> |
| 165 | + </configuration> |
| 166 | + </execution> |
| 167 | + </executions> |
| 168 | + </plugin> |
145 | 169 | <plugin>
|
146 | 170 | <groupId>org.sonatype.plugins</groupId>
|
147 | 171 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
|
164 | 188 | <plugin>
|
165 | 189 | <groupId>org.owasp</groupId>
|
166 | 190 | <artifactId>dependency-check-maven</artifactId>
|
167 |
| - <version>2.1.1</version> |
| 191 | + <version>3.1.1</version> |
168 | 192 | <configuration>
|
169 | 193 | <cveValidForHours>24</cveValidForHours>
|
170 | 194 | <failBuildOnCVSS>0</failBuildOnCVSS>
|
|
188 | 212 | <plugin>
|
189 | 213 | <groupId>org.jacoco</groupId>
|
190 | 214 | <artifactId>jacoco-maven-plugin</artifactId>
|
191 |
| - <version>0.7.9</version> |
| 215 | + <version>0.8.0</version> |
192 | 216 | <executions>
|
193 | 217 | <execution>
|
194 | 218 | <id>prepare-agent</id>
|
|
0 commit comments