Author: tv
Date: Mon Sep 12 21:27:04 2011
New Revision: 1169935
URL: http://svn.apache.org/viewvc?rev=1169935&view=rev
Log:
Use Maven2-layout, fix links in documentation
Modified:
turbine/fulcrum/trunk/quartz/pom.xml
turbine/fulcrum/trunk/quartz/project.properties
turbine/fulcrum/trunk/quartz/project.xml
turbine/fulcrum/trunk/quartz/src/site/xdoc/changes.xml
turbine/fulcrum/trunk/quartz/src/site/xdoc/index.xml
turbine/fulcrum/trunk/quartz/src/site/xdoc/navigation.xml
Modified: turbine/fulcrum/trunk/quartz/pom.xml
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/quartz/pom.xml?rev=1169935&r1=1169934&r2=1169935&view=diff
==============================================================================
--- turbine/fulcrum/trunk/quartz/pom.xml (original)
+++ turbine/fulcrum/trunk/quartz/pom.xml Mon Sep 12 21:27:04 2011
@@ -64,6 +64,15 @@
<role>Java Developer</role>
</roles>
</developer>
+ <developer>
+ <name>Thomas Vandahl</name>
+ <id>tv</id>
+ <email>[email protected]</email>
+ <organization />
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
</developers>
<dependencies>
@@ -104,10 +113,32 @@
<testSourceDirectory>${basedir}/src/test</testSourceDirectory>
</build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <!-- generate the changes report from changes.xml -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changes-plugin</artifactId>
+ <version>2.0-beta-3</version>
+ <configuration>
+ <xmlPath>${basedir}/src/changes/changes.xml</xmlPath>
+ </configuration>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>changes-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
+
<properties>
<!-- This bits are used for the staging directory -->
<fulcrum.release.version>1.1.0</fulcrum.release.version>
- <fulcrum.rc.version>RC1</fulcrum.rc.version>
+ <fulcrum.rc.version>RC1</fulcrum.rc.version>
+ <fulcrum.deployment.protocol>scpexe</fulcrum.deployment.protocol>
</properties>
<profiles>
Modified: turbine/fulcrum/trunk/quartz/src/site/xdoc/index.xml
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/quartz/src/site/xdoc/index.xml?rev=1169935&r1=1169934&r2=1169935&view=diff
==============================================================================
--- turbine/fulcrum/trunk/quartz/src/site/xdoc/index.xml (original)
+++ turbine/fulcrum/trunk/quartz/src/site/xdoc/index.xml Mon Sep 12 21:27:04
2011
@@ -42,9 +42,9 @@
Scheduled jobs can be either created programmatically (using the Quartz
API) or by
using an XML configuration based on the
'XMLSchedulingDataProcessorPlugin'. A
scheduled job consists of a class implementing the interface
- <a
href="http://www.quartz-scheduler.org/docs/api/1.8.1/org/quartz/Job.html">org.quartz.Job</a>
+ <a
href="http://www.quartz-scheduler.org/api/2.0.0/org/quartz/Job.html">org.quartz.Job</a>
This requires just that one method be defined, execute(), whose
- <a
href="http://www.opensymphony.com/quartz/api/org/quartz/JobExecutionContext.html">
+ <a
href="http://www.quartz-scheduler.org/api/2.0.0/org/quartz/JobExecutionContext.html">
org.quartz.JobExecutionContext</a> argument provides you with details of
the
execution context when the task is triggered.
</p>
@@ -76,7 +76,7 @@ public class SimpleJob implements Job
In order to invoke the SimpleJob we have to tell Quartz when to invoke
the 'execute' method. In this case we create a CRON trigger firing every
second to invoke SimpleJob#execute() on a newly created instance. Please
- note that we definea set of parameters using the <job-data-map>
+ note that we define a set of parameters using the <job-data-map>
which are available using 'JobExecutionContext'.
</p>
@@ -116,7 +116,7 @@ public class SimpleJob implements Job
<section name="Implementation Details">
<p>
- The implemtation registers a JobListener which intercepts the execution
of
+ The implementation registers a JobListener which intercepts the
execution of
the job to set some Avalon infrastructure such 'Logger' and
'ServiceManager'.
This allows an simple invocation of an Avalon service within the job
execution.
</p>
@@ -127,7 +127,7 @@ public class SimpleJob implements Job
</p>
<p>
The service can be started without quartz configuration (relying on
default
- settings) and preconfigered triggers.
+ settings) and preconfigured triggers.
</p>
</section>
</body>