0

I am using weld and cdi-unit with java 11-openj9 in a project, when I run my unit test, configured with @runWith(Cdirunner.class) I get this error "ClassNotFoundException: org.jglue.cdiunit.CdiRunner"

<dependency>
        <groupId>org.jglue.cdi-unit</groupId>
        <artifactId>cdi-unit</artifactId>
        <version>3.1.4</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.jboss.weld.se</groupId>
        <artifactId>weld-se-core</artifactId>
        <version>2.4.0.Final</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.jboss.weld.se</groupId>
        <artifactId>weld-se</artifactId>
        <version>2.4.0.Final</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.jboss.weld</groupId>
        <artifactId>weld-core</artifactId>
        <version>2.4.0.Final</version>
    </dependency>
    <dependency>
        <groupId>org.jboss.weld</groupId>
        <artifactId>weld-core-impl</artifactId>
        <version>2.4.0.Final</version>
    </dependency>
  • Is it happening only during test? No errors being shown in your IDE? – res Jan 28 '20 at 12:51
  • Yes, actually It is a batch, and when i lanch my Integration test it work but it not working only in test, I am using intellij 19.3 and here the satcktrace `java.lang.TypeNotPresentException: Type org.jglue.cdiunit.CdiRunner not present at java.base/sun.reflect.annotation.TypeNotPresentExceptionProxy.generateException(TypeNotPresentExceptionProxy.java:46) at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:230) at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:58) Caused` – Garraoui Marwen Jan 28 '20 at 13:44
  • `Caused by: java.lang.ClassNotFoundException: org.jglue.cdiunit.CdiRunner` – Garraoui Marwen Jan 28 '20 at 13:45

1 Answers1

0

Please use a newer version of cdi-unit, for example, 4.1.1.

There were changes implemented to support Java 9 and beyond. See Support for Java 9 and later for the reference.

Illya Kysil
  • 1,642
  • 10
  • 18