Reputation: 1
I have this error, I have tried to resolve it but I can't.
org.primefaces.extensions.component.gchart.GChartRenderer' is missing a runtime dependency: java.lang.NoClassDefFoundError: com/google/gson/GsonBuilder
ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 64) MSC000001: Failed to start service jboss.undertow.deployment.default-server.default-host./csi: org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host./csi: java.lang.RuntimeException: java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: Source Document: vfs:/D:/Projet/wildfly-9.0.0.Final/standalone/deployments/csi.war/WEB-INF/lib/primefaces-extensions-4.0.0.jar/META-INF/faces-config.xml Cause: Class 'org.primefaces.extensions.component.gchart.GChartRenderer' is missing a runtime dependency: java.lang.NoClassDefFoundError: com/google/gson/GsonBuilder
THIS IS THE FIRST PART OF CONSOLE REPORTING FROM WILDFLY
Upvotes: 0
Views: 552
Reputation: 1
You are marking your gson dependency as provided but WildFly doesn't provide it by default. Remove the provided from your dependency. == From– aribeiro
Upvotes: 0