You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2005/09/05 15:09:39 UTC

svn commit: r278735 - in /cocoon: blocks/cron/trunk/ blocks/cron/trunk/pom.xml trunk/pom.xml

Author: cziegeler
Date: Mon Sep  5 06:09:34 2005
New Revision: 278735

URL: http://svn.apache.org/viewcvs?rev=278735&view=rev
Log:
Add cron

Added:
    cocoon/blocks/cron/trunk/pom.xml   (with props)
Modified:
    cocoon/blocks/cron/trunk/   (props changed)
    cocoon/trunk/pom.xml

Propchange: cocoon/blocks/cron/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Sep  5 06:09:34 2005
@@ -0,0 +1 @@
+target

Added: cocoon/blocks/cron/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/cron/trunk/pom.xml?rev=278735&view=auto
==============================================================================
--- cocoon/blocks/cron/trunk/pom.xml (added)
+++ cocoon/blocks/cron/trunk/pom.xml Mon Sep  5 06:09:34 2005
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--+
+    | @version $Id$
+    |
+    +-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-cron</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>quartz</groupId>
+      <artifactId>quartz</artifactId>
+      <version>1.4.5</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-datasource</groupId>
+      <artifactId>excalibur-datasource</artifactId>
+      <version>2.1</version>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <repository>
+      <id>apache</id>
+      <name>Apache Java Repository</name>
+      <url>http://www.apache.org/dist/java-repository</url>
+      <layout>legacy</layout>
+    </repository>
+    <repository>
+      <id>apache-cvs</id>
+      <name>Apache CVS Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/cron/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/cron/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/trunk/pom.xml?rev=278735&r1=278734&r2=278735&view=diff
==============================================================================
--- cocoon/trunk/pom.xml (original)
+++ cocoon/trunk/pom.xml Mon Sep  5 06:09:34 2005
@@ -30,6 +30,7 @@
     <module>core</module>
     <module>webapp</module>
     <module>src/blocks/authentication-fw/trunk</module>
+    <module>src/blocks/cron/trunk</module>
     <module>src/blocks/session-fw/trunk</module>
     <module>src/blocks/template/trunk</module>
   </modules>