I have been migrating an ear project from Ant to Maven and I found with this problem:
GRAVE: Critical error during deployment: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! The default implementation must override this method
The POM configuration from project web is the next:
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alquilaweb</groupId>
<artifactId>Maven-ejb</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.1.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.1.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>${primefaces.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
I googled a lot, but I could not find any solution. Maybe it is an stupid thing, but I can“t find where happens this exception.
Regards,
Sarang
javax.servletentries set toprovidedorcompile? Those pieces are already provided by Glassfish itself and even more, the Servlet version is conflicting. Java EE 6 / Glassfish 3 is Servlet 3.0. – BalusC Sep 14 '12 at 12:42