Skip to content

Commit

Permalink
#197 Build against OpenJDK 13
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkosertic committed Aug 17, 2019
1 parent dac67e1 commit 268099e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ private BytecodeClassParser parseHeader(DataInput aStream, BytecodeReplacer aRep
return new Bytecode5xClassParser(new Bytecode5XProgramParser(), signatureParser, aReplacer);
case 56:
return new Bytecode5xClassParser(new Bytecode5XProgramParser(), signatureParser, aReplacer);
case 57:
return new Bytecode5xClassParser(new Bytecode5XProgramParser(), signatureParser, aReplacer);
}
throw new IllegalArgumentException("Not Supported bytecode format : " + theMajorVersion);
}
Expand Down
8 changes: 8 additions & 0 deletions maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
Expand Down

0 comments on commit 268099e

Please sign in to comment.