Nvm, fixed dependency problem and this fixes my problem.
-----Ursprüngliche Nachricht----- Von: Andy Seaborne <[email protected]> Gesendet: Samstag, 31. Juli 2021 11:54 An: [email protected] Betreff: Re: AW: Storing ThingDescription in Dataset > But i get: > Exception in thread "main" > org.apache.jena.ext.com.google.common.util.concurrent.ExecutionError: > java.lang.NoClassDefFoundError: > org/apache/commons/codec/digest/MurmurHash3 No commons-codec on the classpath, or there is an old version being picked up by dependency resolution via a different route (maybe Apache HttpComponents). Its not uncommon to have dependences with quite old commons-codec dependencies - Jena v4.1.0 was built compiling with commons-code v1.15. Resolution in maven is "closest" - shortest path to dependency. MurmurHash3 is a relatively recent addition to commons-codec. Andy
