Does anyone know the answer to this? I am getting the same problem.
When I try to schedule a job with Quartz, I am running into the following exception:
Code:
java.lang.NoSuchMethodError: org.apache.commons.collections.SetUtils.orderedSet(Ljava/util/Set;)Ljava/util/Set;
at org.quartz.JobDetail.<init>(JobDetail.java:85)
at com.kenan.tss.webmanager.framework.SchedulerPlugIn.scheduleJob(SchedulerPlugIn.java:134)
at com.kenan.tss.webmanager.framework.SchedulerPlugIn.init(SchedulerPlugIn.java:87)
at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:871)
at org.apache.struts.action.ActionServlet.init(ActionServlet.java:359)
at javax.servlet.GenericServlet.init(GenericServlet.java:213)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:880)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:768)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3484)
at org.apache.catalina.core.StandardContext.reload(StandardContext.java:2619)
at org.apache.catalina.loader.WebappLoader$WebappContextNotifier.run(WebappLoader.java:1326)
at java.lang.Thread.run(Thread.java:534)
I am using Hibernate 3.2.6ga which uses common-collections-2.1.jar, while Quartz depends on common-collections-3.1.jar.
I am thinking of using an earlier Quartz version but I'm having trouble figuring out which version only depended on commons-collections-2.x.jar.
Thanks,
Brent