|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>org.cryptomator</groupId>
|
5 | 5 | <artifactId>siv-mode</artifactId>
|
6 |
| - <version>1.2.2</version> |
| 6 | + <version>1.2.3</version> |
7 | 7 |
|
8 | 8 | <name>SIV Mode</name>
|
9 | 9 | <description>RFC 5297 SIV mode: deterministic authenticated encryption</description>
|
|
59 | 59 | <version>2.8.47</version>
|
60 | 60 | <scope>test</scope>
|
61 | 61 | </dependency>
|
| 62 | + <dependency> |
| 63 | + <groupId>com.google.guava</groupId> |
| 64 | + <artifactId>guava</artifactId> |
| 65 | + <version>23.6-jre</version> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency> |
62 | 68 | <dependency>
|
63 | 69 | <groupId>org.openjdk.jmh</groupId>
|
64 | 70 | <artifactId>jmh-core</artifactId>
|
|
77 | 83 | <plugins>
|
78 | 84 | <plugin>
|
79 | 85 | <artifactId>maven-compiler-plugin</artifactId>
|
80 |
| - <version>3.6.2</version> |
| 86 | + <version>3.7.0</version> |
81 | 87 | <configuration>
|
82 | 88 | <source>1.7</source>
|
83 | 89 | <target>1.7</target>
|
| 90 | + <release>7</release> |
| 91 | + <encoding>UTF-8</encoding> |
| 92 | + <showWarnings>true</showWarnings> |
84 | 93 | </configuration>
|
85 | 94 | </plugin>
|
86 | 95 | <plugin>
|
|
96 | 105 | </plugin>
|
97 | 106 | <plugin>
|
98 | 107 | <artifactId>maven-shade-plugin</artifactId>
|
99 |
| - <version>3.0.0</version> |
| 108 | + <version>3.1.0</version> |
100 | 109 | <executions>
|
101 | 110 | <execution>
|
102 | 111 | <phase>package</phase>
|
|
155 | 164 | <plugin>
|
156 | 165 | <groupId>org.owasp</groupId>
|
157 | 166 | <artifactId>dependency-check-maven</artifactId>
|
158 |
| - <version>2.1.0</version> |
| 167 | + <version>2.1.1</version> |
159 | 168 | <configuration>
|
160 | 169 | <cveValidForHours>24</cveValidForHours>
|
161 | 170 | <failBuildOnCVSS>0</failBuildOnCVSS>
|
|
174 | 183 |
|
175 | 184 | <profile>
|
176 | 185 | <id>coverage</id>
|
177 |
| - <dependencies> |
178 |
| - <dependency> |
179 |
| - <groupId>com.codacy</groupId> |
180 |
| - <artifactId>codacy-coverage-reporter</artifactId> |
181 |
| - <version>2.0.0</version> |
182 |
| - <classifier>assembly</classifier> |
183 |
| - <exclusions> |
184 |
| - <exclusion> |
185 |
| - <groupId>*</groupId> |
186 |
| - <artifactId>*</artifactId> |
187 |
| - </exclusion> |
188 |
| - </exclusions> |
189 |
| - </dependency> |
190 |
| - </dependencies> |
191 | 186 | <build>
|
192 | 187 | <plugins>
|
193 | 188 | <plugin>
|
|
203 | 198 | </execution>
|
204 | 199 | </executions>
|
205 | 200 | </plugin>
|
206 |
| - <plugin> |
207 |
| - <groupId>org.codehaus.mojo</groupId> |
208 |
| - <artifactId>exec-maven-plugin</artifactId> |
209 |
| - <version>1.6.0</version> |
210 |
| - <executions> |
211 |
| - <execution> |
212 |
| - <phase>verify</phase> |
213 |
| - <goals> |
214 |
| - <goal>java</goal> |
215 |
| - </goals> |
216 |
| - <configuration> |
217 |
| - <mainClass>com.codacy.CodacyCoverageReporter</mainClass> |
218 |
| - <arguments> |
219 |
| - <argument>-l</argument> |
220 |
| - <argument>Java</argument> |
221 |
| - <argument>-r</argument> |
222 |
| - <argument>${project.build.directory}/site/jacoco/jacoco.xml</argument> |
223 |
| - </arguments> |
224 |
| - </configuration> |
225 |
| - </execution> |
226 |
| - </executions> |
227 |
| - </plugin> |
228 | 201 | </plugins>
|
229 | 202 | </build>
|
230 | 203 | </profile>
|
|
257 | 230 | </plugin>
|
258 | 231 | <plugin>
|
259 | 232 | <artifactId>maven-javadoc-plugin</artifactId>
|
260 |
| - <version>2.10.4</version> |
| 233 | + <version>3.0.0</version> |
261 | 234 | <executions>
|
262 | 235 | <execution>
|
263 | 236 | <id>attach-javadocs</id>
|
|
280 | 253 | </execution>
|
281 | 254 | </executions>
|
282 | 255 | </plugin>
|
283 |
| - <plugin> |
284 |
| - <groupId>org.sonatype.plugins</groupId> |
285 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
286 |
| - <version>1.6.8</version> |
287 |
| - <extensions>true</extensions> |
288 |
| - <configuration> |
289 |
| - <serverId>ossrh</serverId> |
290 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
291 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
292 |
| - </configuration> |
293 |
| - </plugin> |
294 | 256 | </plugins>
|
295 | 257 | </build>
|
296 | 258 | </profile>
|
|
0 commit comments