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 2006/07/24 16:27:58 UTC

svn commit: r425061 - in /cocoon/trunk/blocks/cocoon-portal: cocoon-portal-auth-imp/ cocoon-portal-auth-imp/pom.xml cocoon-portal-auth-imp/src/ cocoon-portal-auth-imp/src/main/ cocoon-portal-auth-imp/src/main/java/ cocoon-portal-sample/pom.xml pom.xml

Author: cziegeler
Date: Mon Jul 24 07:27:57 2006
New Revision: 425061

URL: http://svn.apache.org/viewvc?rev=425061&view=rev
Log:
Create new portal auth block to host the portal related stuff from the cauth block

Added:
    cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/
    cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml   (with props)
    cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/src/
    cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/src/main/
    cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/src/main/java/
Modified:
    cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/pom.xml
    cocoon/trunk/blocks/cocoon-portal/pom.xml

Added: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml?rev=425061&view=auto
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml (added)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml Mon Jul 24 07:27:57 2006
@@ -0,0 +1,49 @@
+<?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>
+  <parent>
+    <groupId>org.apache.cocoon</groupId>
+    <artifactId>cocoon-portal</artifactId>
+    <version>1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>cocoon-portal-auth-impl</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <name>Cocoon CAuth Support</name>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-portal-impl</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-auth-impl</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+</project>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-auth-imp/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/pom.xml?rev=425061&r1=425060&r2=425061&view=diff
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/pom.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/pom.xml Mon Jul 24 07:27:57 2006
@@ -62,7 +62,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.cocoon</groupId>
-      <artifactId>cocoon-auth-impl</artifactId>
+      <artifactId>cocoon-portal-auth-impl</artifactId>
       <version>1.0.0-SNAPSHOT</version>
     </dependency>
   </dependencies>

Modified: cocoon/trunk/blocks/cocoon-portal/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/pom.xml?rev=425061&r1=425060&r2=425061&view=diff
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/pom.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/pom.xml Mon Jul 24 07:27:57 2006
@@ -31,6 +31,7 @@
   <name>Portal Block</name>
   <version>1-SNAPSHOT</version>
   <modules>
+    <module>cocoon-portal-auth-impl</module>
     <module>cocoon-portal-impl</module>
     <module>cocoon-portal-portlet-impl</module>
     <module>cocoon-portal-wsrp-impl</module>