I know there are thousands of blogs about CNFEs out there, but I can't get it work.
I use Maven to build my GWT project. In the pom.xml, there is this line:
<dependency>
<groupId>oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
<scope>runtime</scope>
</dependency>
In the built .war file, there is the correct .jar in WEB-INF/lib. So the class is where I expect it to be. But I'm still getting a ClassNotFoundException.
Where am I wrong? Is it because of the runtime scope?