问题
I'm using Javers Spring integration inside my application. I have a problem with Javers'es dependency named classgraph
- it requires JDK9 while in my project I use Java 8 and unfortunately I'm not able to bump it to the 9
.
Has anyone met this problem? Is there any approach how to avoid this?
Javers dependency in javers-spring-5.1.3.pom
:
<groupId>org.javers</groupId>
<artifactId>javers-core</artifactId>
<version>5.1.3</version>
<scope>compile</scope>
Classgraph dependency in javers-core.5.1.3.pom
:
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>4.4.12</version>
<name>ClassGraph</name>
来源:https://stackoverflow.com/questions/55180234/classgraph-dependency-on-javers-require-jdk9