'Cassandra Embedded Unit Test

So, I'm trying to implement the Embedded cassandra unit tests using java version 11. I have added this spring dependency,

        <dependency>
            <groupId>org.cassandraunit</groupId>
            <artifactId>cassandra-unit-spring</artifactId>
            <version>4.3.1.0</version>
            <scope>test</scope>
        </dependency>

But while the EmbeddedCsassandra using EmbeddedCassandraServerHelper.startEmbeddedCassandra(); trying to be started there is an infinite loop without any logs and the test didn't stops. I have change the jdk to jdk8 and everything was started correctly. If anyone have an idea if the Embedded Cassandra supported by the jdk11 or not. And thank you in advance.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source