infobip / popout

Java file-based extremely fast and reliable FIFO queue.
Apache License 2.0
58 stars 13 forks source link

java.lang.NoClassDefFoundError #9

Closed mostafaoram closed 1 year ago

mostafaoram commented 1 year ago

I am using Gradle to include the dependency. When try to use it with default configurations, i got the following error:

java.lang.NoClassDefFoundError: org.infobip.lib.popout.FileQueue$DefaultCorruptionHandler
    at org.infobip.lib.popout.FileQueue$Builder.<init>(FileQueue.java:135)
    at org.infobip.lib.popout.batched.BatchedFileQueueBuilder.<init>(BatchedFileQueueBuilder.java:36)
    at org.infobip.lib.popout.FileQueue.batched(FileQueue.java:70)

I have tried to use DefaultCorruptionHandler explicitly or also define new implementation for it at my project, i got the same error. Is there something i missed?

Thanks