Skip to content

Commit 0b513ed

Browse files
use JDK 11 for building
1 parent bbbec83 commit 0b513ed

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.mvn/maven.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-DcommonConfig.compiler.profile=jdk7_w_errorprone
1+
-DcommonConfig.compiler.profile=jdk11_w_errorprone

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
language: java
55
install: true
66
jdk:
7-
- openjdk8
7+
- openjdk11
88

99
env:
1010
global:

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>at.favre.lib</groupId>
99
<artifactId>common-parent</artifactId>
10-
<version>12</version>
10+
<version>15</version>
1111
</parent>
1212

1313
<artifactId>hkdf</artifactId>
@@ -39,6 +39,9 @@
3939
<plugin>
4040
<groupId>org.apache.maven.plugins</groupId>
4141
<artifactId>maven-compiler-plugin</artifactId>
42+
<configuration>
43+
<release>7</release>
44+
</configuration>
4245
</plugin>
4346
<plugin>
4447
<groupId>org.apache.maven.plugins</groupId>
@@ -47,6 +50,9 @@
4750
<plugin>
4851
<groupId>org.apache.maven.plugins</groupId>
4952
<artifactId>maven-javadoc-plugin</artifactId>
53+
<configuration>
54+
<release>7</release>
55+
</configuration>
5056
</plugin>
5157
<plugin>
5258
<groupId>org.owasp</groupId>

0 commit comments

Comments
 (0)