Author: gpetracek
Date: Wed Jul 9 18:16:54 2014
New Revision: 1609253
URL: http://svn.apache.org/r1609253
Log:
updated content
Modified:
deltaspike/site/trunk/content/scheduler.mdtext
Modified: deltaspike/site/trunk/content/scheduler.mdtext
URL:
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/scheduler.mdtext?rev=1609253&r1=1609252&r2=1609253&view=diff
==============================================================================
--- deltaspike/site/trunk/content/scheduler.mdtext (original)
+++ deltaspike/site/trunk/content/scheduler.mdtext Wed Jul 9 18:16:54 2014
@@ -24,6 +24,18 @@ Notice: Licensed to the Apache Softwa
This module provides a simple integration with Quartz v2 (per default) or any
other scheduler which supports cron-expressions for job-classes.
+# External Dependencies
+
+If you would like to use the default-integration with quartz (which is
optional), you have to add quartz 2.x.
+
+
+ <dependency>
+ <groupId>org.quartz-scheduler</groupId>
+ <artifactId>quartz</artifactId>
+ <version>2.2.1</version>
+ </dependency>
+
+
# @Scheduled
Just annotate your Quartz-Jobs with `@Scheduled` and they will get picked up
and passed to the scheduler automatically (during the bootstrapping process).
@@ -108,7 +120,7 @@ With some versions of Weld you have to u
}
}
-or with DeltaSpike v0.7+
+or
<alternatives>
<class>org.apache.deltaspike.scheduler.impl.QuartzSchedulerProducer</class>