OpenSymphony's Quartz Scheduler.
Here is the list of declaration for quartz. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>quartz</groupId> <artifactId>quartz</artifactId> <version>1.5.2</version> </dependency>
If you think this Maven repository POM file listing for quartz is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The quartz-1.5.2 has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
XML | commons-digester 1.7 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 182 |
Database | commons-dbcp 1.2.1 Commons Database Connection Pooling | 20 |
The following table lists the most popular artifacts which are depending on quartz-1.5.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE | opencms-core 8.0.1 Opencms-core is the JAR-Library for OpenCms. OpenCms is a Content Management System that is based on Open Source Software. Complex Intranet and Internet websites can be quickly and cost-effectively created, maintained and managed. | 53 |
JEE | opencms-core 8.5.2 Opencms-core is the JAR-Library for OpenCms. OpenCms is a Content Management System that is based on Open Source Software. Complex Intranet and Internet websites can be quickly and cost-effectively created, maintained and managed. | 5 |
Security | jsecurity 0.9.0-RC2 JSecurity is a powerful and flexible open-source Java security framework that cleanly handles authentication, authorization, enterprise session management, single sign-on and cryptography services. | 17 |
JEE | opencms-core 8.5.0 Opencms-core is the JAR-Library for OpenCms. OpenCms is a Content Management System that is based on Open Source Software. Complex Intranet and Internet websites can be quickly and cost-effectively created, maintained and managed. | 28 |
Spring | spring 2.0 Spring Framework | 11 |
Spring | spring 1.2.9 Spring Framework | 27 |
The following packages are defined in the quartz-1.5.2.jar
org.quartz org.quartz.core org.quartz.ee.jta org.quartz.ee.servlet org.quartz.helpers org.quartz.impl org.quartz.impl.calendar org.quartz.impl.jdbcjobstore org.quartz.jobs org.quartz.jobs.ee.ejb org.quartz.jobs.ee.jmx org.quartz.jobs.ee.mail org.quartz.plugins.history org.quartz.plugins.management org.quartz.plugins.xml org.quartz.simpl org.quartz.spi org.quartz.utils org.quartz.xml
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>quartz</groupId> <artifactId>quartz</artifactId> <version>1.5.2</version> <description>OpenSymphony's Quartz Scheduler</description> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> <version>1.0.1b</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils-bean-collections</artifactId> <version>1.7.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>1.7</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.3.3_01</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.ejb</groupId> <artifactId>ejb</artifactId> <version>2.1</version> <scope>provided</scope> <optional>true</optional> </dependency> </dependencies> </project>