0

I have tried both these libraries and Wildfly is throwing java.lang.NoClassDefFoundError on any class in use when my application is deployed.

Is there something in Wildfly that's blocking these libraries/or APIs that they use?

codegy
  • 118
  • 6

1 Answers1

0

I found the solution. In my pom.xml file of my EJB module, I added the following under <configuration> of maven-ejb-plugin:

<archive>
    <manifest>
        <addClasspath>true</addClasspath>
    </manifest>
</archive>
codegy
  • 118
  • 6