The problem I'm experiencing is
After executing:
git clone https://github.com/InverseIntegral/gdbmeter.git
cd gdbmeter
./gradlew clean assemble
cd build/libs
java -jar gdbmeter-*.jar -db janus -o partition
It caused:
java.lang.IllegalArgumentException: Could not find implementation class: org.janusgraph.diskstorage.lucene.LuceneIndex
Then I add a dependency:
implementation("org.janusgraph:janusgraph-lucene:0.6.3")
Now the exception turns into:
java.lang.IllegalArgumentException: Unsupported class file major version 61
Here are some details about my setup:
- Operating System: windows11 wsl2
- Java Version: jdk 17
Thank you for your attention to this matter.
The problem I'm experiencing is
After executing:
git clone https://github.com/InverseIntegral/gdbmeter.git
cd gdbmeter
./gradlew clean assemble
cd build/libs
java -jar gdbmeter-*.jar -db janus -o partition
It caused:
java.lang.IllegalArgumentException: Could not find implementation class: org.janusgraph.diskstorage.lucene.LuceneIndex
Then I add a dependency:
implementation("org.janusgraph:janusgraph-lucene:0.6.3")
Now the exception turns into:
java.lang.IllegalArgumentException: Unsupported class file major version 61
Here are some details about my setup:
Thank you for your attention to this matter.