I just started working with maven and I am really new to this concept. I am using m2Eclipse plugin to work in maven. I use dependency to include the quartz library.
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.0.2</version>
</dependency>
and inside the guest/.m2/repository I can see the the corresponding library files. But in code I cant import the quartz library. Its showing errors.
I can see that the maven repository is included in class path.
What is the reaon for this? Also when I use Debug As > Maven Install
Its shows some log and in the end it says build successful
Whats Happening?
Error : import org.quartz cannot be resolved
Thanks