> I still have the same issue with this dependency : > > <dependency> > <groupId>org.quartz-scheduler</groupId> > <artifactId>quartz</artifactId> > <version>1.8.4</version> > </dependency>
Try... mvn dependency:tree ...in the top Maven module of your project and search for the 'quartz'. Probably quartz is resolved by another dependency (Maven transitive dependencies like to make such larks :) ) . Also make sure that some non-mavenized quartz jar is not somewhere in the server lib/ext. Executing... find my_project_directory -iname '*quartz*.jar' ...will help you to find such "orphaned" jars. -- Henryk Konsek http://henryk-konsek.blogspot.com