Skip to content

Commit 5508d52

Browse files
updated dependencies
1 parent f71ac4d commit 5508d52

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
dist: xenial
12
language: java
23
sudo: false
34
jdk:
4-
- oraclejdk9
5+
- openjdk11
56
env:
67
global:
78
- secure: "dYjMF9qjmv85TdhSauKTfU+5Lt7q1ZpOLfpYuRz1yQF3Y+Ru/5/2Ucb4efgzLNRE4u9KGM7MJr1YRH3qV5OyxBqfKZ9ORq5noQbukfKyDDjS7oRn1HiHWG5ZWs2Ja35z0a5BK8+h5OF8kA1C5dmQ/tePKP5JAZZlhwnBolkwUXTJXAvppSBpl2/m/0KBJoHMJYxiY4DJ8grf3OWWhsWO9YMeJAov+N4GFJy9J85tbKvb4XgJITBPrSmK981JS67sddjelaodaolF5vewoW7KfxG87SMRr6xOno0Qy1td2aiUXMt10w2eI2FTluC9Fp0UJ7z3rMEGcHGFjaPXk+bLOAwGwoJq3xt3mA91Y7N1aQuOnWL01K94c7rw9yUU+HUfrUz1iPVEFD36FkwZNFYXHPL8JMuSL6bIafaiu5Nd95QZP7vET3It07zBc/KcV2izdk9aXOOPumKmw/VpzunWfYF2we53uuN1tvzBJ5yxuHjsoteTkbdoYpIinAHI3QfREwwRX19Q4jjJU9GTT12n/7GQopXzuytK6M6xlltVVD/KffmdyiqqWA1u391t2HcgmX6TyvHS4jNy9hbJ+/zfqwZG+NQFSPz99LAiGpLYmctY3A5oofM16x07Tofk/HvbCMCjuMsk0zLgd1m915TFJ5ZUQ510ohrM5IBSdUJ6NUc=" # CODACY_PROJECT_TOKEN

pom.xml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.bouncycastle</groupId>
4343
<artifactId>bcprov-jdk15on</artifactId>
44-
<version>1.60</version>
44+
<version>1.61</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,25 +56,25 @@
5656
<dependency>
5757
<groupId>org.mockito</groupId>
5858
<artifactId>mockito-core</artifactId>
59-
<version>2.16.0</version>
59+
<version>2.27.0</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.google.guava</groupId>
6464
<artifactId>guava</artifactId>
65-
<version>24.0-jre</version>
65+
<version>27.1-jre</version>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.openjdk.jmh</groupId>
7070
<artifactId>jmh-core</artifactId>
71-
<version>1.20</version>
71+
<version>1.21</version>
7272
<scope>test</scope>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.openjdk.jmh</groupId>
7676
<artifactId>jmh-generator-annprocess</artifactId>
77-
<version>1.20</version>
77+
<version>1.21</version>
7878
<scope>test</scope>
7979
</dependency>
8080
</dependencies>
@@ -83,18 +83,21 @@
8383
<plugins>
8484
<plugin>
8585
<artifactId>maven-compiler-plugin</artifactId>
86-
<version>3.7.0</version>
86+
<version>3.8.1</version>
8787
<configuration>
88-
<source>1.7</source>
89-
<target>1.7</target>
9088
<release>7</release>
9189
<encoding>UTF-8</encoding>
9290
<showWarnings>true</showWarnings>
9391
</configuration>
9492
</plugin>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-surefire-plugin</artifactId>
96+
<version>2.22.2</version>
97+
</plugin>
9598
<plugin>
9699
<artifactId>maven-jar-plugin</artifactId>
97-
<version>3.0.2</version>
100+
<version>3.1.1</version>
98101
<configuration>
99102
<archive>
100103
<manifestEntries>
@@ -105,7 +108,7 @@
105108
</plugin>
106109
<plugin>
107110
<artifactId>maven-shade-plugin</artifactId>
108-
<version>3.1.0</version>
111+
<version>3.2.1</version>
109112
<executions>
110113
<execution>
111114
<phase>package</phase>
@@ -145,7 +148,7 @@
145148
<plugin>
146149
<groupId>org.moditect</groupId>
147150
<artifactId>moditect-maven-plugin</artifactId>
148-
<version>1.0.0.Beta1</version>
151+
<version>1.0.0.Beta2</version>
149152
<executions>
150153
<execution>
151154
<id>add-module-infos</id>
@@ -176,7 +179,7 @@
176179
<plugin>
177180
<groupId>org.owasp</groupId>
178181
<artifactId>dependency-check-maven</artifactId>
179-
<version>3.1.1</version>
182+
<version>4.0.2</version>
180183
<configuration>
181184
<cveValidForHours>24</cveValidForHours>
182185
<failBuildOnCVSS>0</failBuildOnCVSS>
@@ -200,7 +203,7 @@
200203
<plugin>
201204
<groupId>org.jacoco</groupId>
202205
<artifactId>jacoco-maven-plugin</artifactId>
203-
<version>0.8.0</version>
206+
<version>0.8.3</version>
204207
<executions>
205208
<execution>
206209
<id>prepare-agent</id>
@@ -238,7 +241,7 @@
238241
</plugin>
239242
<plugin>
240243
<artifactId>maven-javadoc-plugin</artifactId>
241-
<version>3.0.0</version>
244+
<version>3.1.0</version>
242245
<executions>
243246
<execution>
244247
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)