- create a new identity module in order to move (id)entities related classes
git-svn-id: https://svn.apache.org/repos/asf/lenya/trunk@1043785 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/org.apache.lenya.core.identity/pom.xml b/org.apache.lenya.core.identity/pom.xml
new file mode 100644
index 0000000..ccdf382
--- /dev/null
+++ b/org.apache.lenya.core.identity/pom.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.lenya</groupId>
+ <artifactId>lenya-parent</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ <relativePath>../org.apache.lenya.parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.apache.lenya</groupId>
+ <artifactId>lenya-core-identity</artifactId>
+ <packaging>jar</packaging>
+ <name>Apache Lenya core Identity</name>
+ <description>Define and deal with identities (users, machine, ...) in Lenya </description>
+
+ <dependencies>
+
+ <!-- TODO : see if all theses dependencies are required -->
+ <dependency>
+ <groupId>org.apache.cocoon</groupId>
+ <artifactId>cocoon-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cocoon</groupId>
+ <artifactId>cocoon-servlet-service-components</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cocoon</groupId>
+ <artifactId>cocoon-template-impl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cocoon</groupId>
+ <artifactId>cocoon-flowscript-impl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+</project>
diff --git a/org.apache.lenya.core.identity/rcl.properties b/org.apache.lenya.core.identity/rcl.properties
new file mode 100644
index 0000000..3ebcd66
--- /dev/null
+++ b/org.apache.lenya.core.identity/rcl.properties
@@ -0,0 +1,17 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You 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.
+#
+org.apache.lenya.lenya-core-identity.service%classes-dir=./target/classes
\ No newline at end of file