You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by at...@apache.org on 2012/06/28 00:28:18 UTC

svn commit: r1354759 - in /rave/sandbox/content-services/rave-web-hmvc: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/rave/ src/main/java/org/apache/rave/portal/ src/main/java/org/apache/rave/por...

Author: ate
Date: Wed Jun 27 22:28:17 2012
New Revision: 1354759

URL: http://svn.apache.org/viewvc?rev=1354759&view=rev
Log:
RAVE-694: Create new rave-web-hmvc module to provide a Springframework based HMVC solution using a hierarchical page model and controller mappings
- basic module skeleton

Added:
    rave/sandbox/content-services/rave-web-hmvc/   (with props)
    rave/sandbox/content-services/rave-web-hmvc/pom.xml   (with props)
    rave/sandbox/content-services/rave-web-hmvc/src/
    rave/sandbox/content-services/rave-web-hmvc/src/main/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/apache/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/apache/rave/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/apache/rave/portal/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/apache/rave/portal/web/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/apache/rave/portal/web/hmvc/
    rave/sandbox/content-services/rave-web-hmvc/src/main/java/org/apache/rave/portal/web/model/

Propchange: rave/sandbox/content-services/rave-web-hmvc/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jun 27 22:28:17 2012
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project

Added: rave/sandbox/content-services/rave-web-hmvc/pom.xml
URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/rave-web-hmvc/pom.xml?rev=1354759&view=auto
==============================================================================
--- rave/sandbox/content-services/rave-web-hmvc/pom.xml (added)
+++ rave/sandbox/content-services/rave-web-hmvc/pom.xml Wed Jun 27 22:28:17 2012
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+
+  $Id$
+-->
+<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.rave.sandbox.jcr</groupId>
+    <artifactId>rave-content-services</artifactId>
+    <version>sandbox-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>rave-web-hmvc</artifactId>
+  <name>Apache Rave :: rave-web-hmvc</name>
+  <description>Apache Rave Web HMVC</description>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.rave</groupId>
+      <artifactId>rave-core</artifactId>
+      <version>${apache.rave.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-web</artifactId>
+      <version>${org.springframework.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+
+    <!-- Test -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-test</artifactId>
+      <version>${org.springframework.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: rave/sandbox/content-services/rave-web-hmvc/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: rave/sandbox/content-services/rave-web-hmvc/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: rave/sandbox/content-services/rave-web-hmvc/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain