svn commit: r740876 - in /lenya/trunk/org.apache.lenya.core.notification: ./ pom.xml src/ src/main/ src/main/java/
[email protected] Wed, 04 Feb 2009 20:54:38 -0000
Newsgroups
gmane.comp.cms.lenya.cvs
Message-ID
<[email protected] >
Author: andreas
Date: Wed Feb 4 20:54:38 2009
New Revision: 740876
URL: http://svn.apache.org/viewvc?rev=740876&view=rev
Log:
Adding notification module.
Added:
lenya/trunk/org.apache.lenya.core.notification/ (with props)
lenya/trunk/org.apache.lenya.core.notification/pom.xml
lenya/trunk/org.apache.lenya.core.notification/src/
lenya/trunk/org.apache.lenya.core.notification/src/main/
lenya/trunk/org.apache.lenya.core.notification/src/main/java/
Propchange: lenya/trunk/org.apache.lenya.core.notification/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Feb 4 20:54:38 2009
@@ -0,0 +1,6 @@
+target
+.project
+.classpath
+.settings
+profiles.xml
+
Added: lenya/trunk/org.apache.lenya.core.notification/pom.xml
URL: http://svn.apache.org/viewvc/lenya/trunk/org.apache.lenya.core.notification/pom.xml?rev=740876&view=auto
==============================================================================
--- lenya/trunk/org.apache.lenya.core.notification/pom.xml (added)
+++ lenya/trunk/org.apache.lenya.core.notification/pom.xml Wed Feb 4 20:54:38 2009
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.lenya</groupId>
+ <artifactId>lenya</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.apache.lenya</groupId>
+ <artifactId>lenya-core-notification</artifactId>
+ <packaging>jar</packaging>
+ <name>Apache Lenya Core Notification</name>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.lenya</groupId>
+ <artifactId>lenya-core-api</artifactId>
+ </dependency>
+ </dependencies>
+</project>