I inherited a legacy Java Servlet webapp I am slowly rewriting into something a bit more modern.
The webapp runs a nightly scheduled task thanks to Quartz and depends on these library files:
- quartz-1.8.0.jar
- quartz-all-1.8.0.jar
I don’t know Quartz, but I learned JUST enough to fix a harmless exception it was throwing when I took over the webapp. From that experience I learned that there have been significant API changes since version 1.8. 0. Someday when I finish rebuilding more vital parts of the webapp I want to take the time to learn quartz and fully update the libraries.
For now I would be happy to learn what Maven tags I would add to my pom.xml to get both of those jars.
When I boot up WebLogic 11g I get a message telling me that there is a Quartz 1.8.5. Is 1.8.5 fully compatible with version 1.8.0 ?
If so what would be the Maven tags I would need to upgrade to that?
Thanks much in advance for any information.
Steve
Maven Tag for Quartz,
Yes, 1.8.5 is fully compatible with version 1.8.0.
Cheers!!!