Skip to content

Commit b9c7bf3

Browse files
committed
Fix building under java 11 and 12, and remove oracle java 9.
1 parent 6a94e46 commit b9c7bf3

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: java
22
jdk:
3-
- oraclejdk9
43
- oraclejdk11
54
- openjdk8
5+
- openjdk9
66
- openjdk10
77
- openjdk11
88
- openjdk12

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<plugin>
5252
<groupId>org.apache.maven.plugins</groupId>
5353
<artifactId>maven-compiler-plugin</artifactId>
54-
<version>3.8.0</version>
54+
<version>3.8.1</version>
5555
<configuration>
5656
<source>${java.version}</source>
5757
<target>${java.version}</target>

gen/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,15 @@
5858
<plugin>
5959
<groupId>org.apache.maven.plugins</groupId>
6060
<artifactId>maven-javadoc-plugin</artifactId>
61-
<version>3.0.1</version>
61+
<version>3.1.1</version>
62+
<configuration>
63+
<source>${java.version}</source>
64+
</configuration>
6265
</plugin>
6366
<plugin>
6467
<groupId>org.apache.maven.plugins</groupId>
6568
<artifactId>maven-compiler-plugin</artifactId>
66-
<version>3.8.0</version>
69+
<version>3.8.1</version>
6770
<configuration>
6871
<source>${java.version}</source>
6972
<target>${java.version}</target>

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<plugin>
8888
<groupId>org.apache.maven.plugins</groupId>
8989
<artifactId>maven-compiler-plugin</artifactId>
90-
<version>3.8.0</version>
90+
<version>3.8.1</version>
9191
<configuration>
9292
<source>${java.version}</source>
9393
<target>${java.version}</target>
@@ -96,7 +96,7 @@
9696
<plugin>
9797
<groupId>org.apache.maven.plugins</groupId>
9898
<artifactId>maven-source-plugin</artifactId>
99-
<version>3.0.1</version>
99+
<version>3.1.0</version>
100100
<executions>
101101
<execution>
102102
<id>attach-sources</id>
@@ -109,11 +109,12 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-javadoc-plugin</artifactId>
112-
<version>3.0.1</version>
112+
<version>3.1.1</version>
113113
<configuration>
114114
<!-- SLDN documentation contains HTML, but it isn't well formatted. -->
115115
<!-- Java 8 will error if we don't skip doclint here -->
116116
<doclint>none</doclint>
117+
<source>${java.version}</source>
117118
</configuration>
118119
<executions>
119120
<execution>
@@ -141,7 +142,7 @@
141142
<!-- Generate services -->
142143
<plugin>
143144
<artifactId>maven-invoker-plugin</artifactId>
144-
<version>3.1.0</version>
145+
<version>3.2.1</version>
145146
<executions>
146147
<execution>
147148
<id>generate-services</id>

0 commit comments

Comments
 (0)