I am using quartz scheduler in my project. But when I tried to start the project, I got

Exception in thread "main" java.lang.NoSuchMethodError: org.slf4j.spi.LocationAwareLogger.log(Lorg/slf4j/Marker;Ljava/lang/String;ILjava/lang/String;[Ljava/lang/Object;Ljava/lang/Throwable;)V
at org.apache.commons.logging.impl.SLF4JLocationAwareLog.info(SLF4JLocationAwareLog.java:159)
at org.quartz.simpl.SimpleThreadPool.initialize(SimpleThreadPool.java:258)
at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1174)
at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1371)

In my pom I have

<dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>jcl-over-slf4j</artifactId>
        <version>1.6.2</version>
        <type>jar</type>
        <scope>compile</scope>
             <exclusions>
        <exclusion>
        <groupid>org.slf4j</groupid>
         <artifactid>jcl104-over-slf4j</artifactid>
        </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>1.6.2</version>
        <type>jar</type>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-nop</artifactId>
        <version>1.6.2</version>
        <type>jar</type>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-parent</artifactId>
        <version>1.6.2</version>
        <type>pom</type>
        <scope>compile</scope>
    </dependency>

It happened at

scheduler = schedulerFactory.getScheduler();

Could anyone please give me some suggestion? I am using quartz 1.6.1,the default slf4j we are using is 1.4.3 Thank you very much

link|improve this question

60% accept rate
2  
It seems you have wrong version of jars in class path. Make sure you have supported versions. – thinksteep Jan 9 at 22:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.