Skip to content

Commit b0f5acf

Browse files
Updated dependencies
1 parent 31cccc9 commit b0f5acf

File tree

1 file changed

+13
-19
lines changed

1 file changed

+13
-19
lines changed

pom.xml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.cryptomator</groupId>
55
<artifactId>siv-mode</artifactId>
6-
<version>1.2.0</version>
6+
<version>1.2.1</version>
77

88
<name>SIV Mode</name>
99
<description>RFC 5297 SIV mode: deterministic authenticated encryption</description>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.bouncycastle</groupId>
4343
<artifactId>bcprov-jdk15on</artifactId>
44-
<version>1.55</version>
44+
<version>1.56</version>
4545
<!-- see maven-shade-plugin; we don't want this as a transitive dependency in other projects -->
4646
<optional>true</optional>
4747
</dependency>
@@ -56,38 +56,36 @@
5656
<dependency>
5757
<groupId>org.mockito</groupId>
5858
<artifactId>mockito-core</artifactId>
59-
<version>1.10.19</version>
59+
<version>2.7.12</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>org.openjdk.jmh</groupId>
6464
<artifactId>jmh-core</artifactId>
65-
<version>1.12</version>
65+
<version>1.17.5</version>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.openjdk.jmh</groupId>
7070
<artifactId>jmh-generator-annprocess</artifactId>
71-
<version>1.12</version>
71+
<version>1.17.5</version>
7272
<scope>test</scope>
7373
</dependency>
7474
</dependencies>
7575

7676
<build>
7777
<plugins>
7878
<plugin>
79-
<groupId>org.apache.maven.plugins</groupId>
8079
<artifactId>maven-compiler-plugin</artifactId>
81-
<version>3.5.1</version>
80+
<version>3.6.1</version>
8281
<configuration>
8382
<source>1.7</source>
8483
<target>1.7</target>
8584
</configuration>
8685
</plugin>
8786
<plugin>
88-
<groupId>org.apache.maven.plugins</groupId>
8987
<artifactId>maven-jar-plugin</artifactId>
90-
<version>2.6</version>
88+
<version>3.0.2</version>
9189
<configuration>
9290
<archive>
9391
<manifestEntries>
@@ -97,9 +95,8 @@
9795
</configuration>
9896
</plugin>
9997
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
10198
<artifactId>maven-shade-plugin</artifactId>
102-
<version>2.4.3</version>
99+
<version>3.0.0</version>
103100
<executions>
104101
<execution>
105102
<phase>package</phase>
@@ -139,7 +136,7 @@
139136
<plugin>
140137
<groupId>org.sonatype.plugins</groupId>
141138
<artifactId>nexus-staging-maven-plugin</artifactId>
142-
<version>1.6.7</version>
139+
<version>1.6.8</version>
143140
<extensions>true</extensions>
144141
<configuration>
145142
<serverId>ossrh</serverId>
@@ -158,7 +155,7 @@
158155
<plugin>
159156
<groupId>org.owasp</groupId>
160157
<artifactId>dependency-check-maven</artifactId>
161-
<version>1.4.3</version>
158+
<version>1.4.5</version>
162159
<configuration>
163160
<cveValidForHours>24</cveValidForHours>
164161
<failBuildOnCVSS>0</failBuildOnCVSS>
@@ -181,7 +178,7 @@
181178
<dependency>
182179
<groupId>com.codacy</groupId>
183180
<artifactId>codacy-coverage-reporter</artifactId>
184-
<version>1.0.10</version>
181+
<version>1.0.13</version>
185182
<classifier>assembly</classifier>
186183
<exclusions>
187184
<exclusion>
@@ -196,7 +193,7 @@
196193
<plugin>
197194
<groupId>org.jacoco</groupId>
198195
<artifactId>jacoco-maven-plugin</artifactId>
199-
<version>0.7.7.201606060606</version>
196+
<version>0.7.9</version>
200197
<executions>
201198
<execution>
202199
<id>prepare-agent</id>
@@ -247,7 +244,6 @@
247244
<build>
248245
<plugins>
249246
<plugin>
250-
<groupId>org.apache.maven.plugins</groupId>
251247
<artifactId>maven-source-plugin</artifactId>
252248
<version>3.0.1</version>
253249
<executions>
@@ -260,7 +256,6 @@
260256
</executions>
261257
</plugin>
262258
<plugin>
263-
<groupId>org.apache.maven.plugins</groupId>
264259
<artifactId>maven-javadoc-plugin</artifactId>
265260
<version>2.10.4</version>
266261
<executions>
@@ -273,7 +268,6 @@
273268
</executions>
274269
</plugin>
275270
<plugin>
276-
<groupId>org.apache.maven.plugins</groupId>
277271
<artifactId>maven-gpg-plugin</artifactId>
278272
<version>1.6</version>
279273
<executions>
@@ -289,7 +283,7 @@
289283
<plugin>
290284
<groupId>org.sonatype.plugins</groupId>
291285
<artifactId>nexus-staging-maven-plugin</artifactId>
292-
<version>1.6.7</version>
286+
<version>1.6.8</version>
293287
<extensions>true</extensions>
294288
<configuration>
295289
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)