Skip to content

Commit

Permalink
Declare which versions of Java are supported. Specifically, Java is n…
Browse files Browse the repository at this point in the history
…o longer backwards compatible and built-in libraries such as javax/xml/bind/DataConverter have been removed in Java 9. I've actually added the following extra dependency to work around this:

implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.2'

This is needed to provided the DataConverter class used by jlog.  JLog should really be fixing this though...
  • Loading branch information
slominskir committed Sep 22, 2020
1 parent af0e6d7 commit eeb3701
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ ext {
releaseDate = 'Sep 22 2020'
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

repositories {
jcenter()

Expand Down

0 comments on commit eeb3701

Please sign in to comment.