Skip to content

Commit

Permalink
Resolve Javadoc issue
Browse files Browse the repository at this point in the history
Javadoc needs to be told that our source is targeting JDK 8 in order to
build in Java 11/12 without error.

Ref: https://bugs.openjdk.java.net/browse/JDK-8212233
  • Loading branch information
JasonTrue committed Jul 12, 2019
1 parent 6434ece commit 3cfa406
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public Backtrace(final ConfigContext config, final Throwable error) {

/**
* For the benefit of deserialization
*
* @param config injected
*/
@JsonCreator
public Backtrace(@JacksonInject("config") final ConfigContext config) {
Expand Down
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<source>8</source>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 3cfa406

Please sign in to comment.