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/08/21 13:51:33 UTC

svn commit: r1375482 - in /rave/sandbox/content-services: demo-portal/pom.xml pom.xml rave-jcr-console/ rave-jcr-console/pom.xml

Author: ate
Date: Tue Aug 21 11:51:33 2012
New Revision: 1375482

URL: http://svn.apache.org/viewvc?rev=1375482&view=rev
Log:
RAVE-767: Create new rave-jcr-console war: a JCR Console for development and administration support

Added:
    rave/sandbox/content-services/rave-jcr-console/   (with props)
    rave/sandbox/content-services/rave-jcr-console/pom.xml   (with props)
Modified:
    rave/sandbox/content-services/demo-portal/pom.xml
    rave/sandbox/content-services/pom.xml

Modified: rave/sandbox/content-services/demo-portal/pom.xml
URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/demo-portal/pom.xml?rev=1375482&r1=1375481&r2=1375482&view=diff
==============================================================================
--- rave/sandbox/content-services/demo-portal/pom.xml (original)
+++ rave/sandbox/content-services/demo-portal/pom.xml Tue Aug 21 11:51:33 2012
@@ -92,6 +92,13 @@
     </dependency>
     <dependency>
       <groupId>org.apache.rave.sandbox.jcr</groupId>
+      <artifactId>rave-jcr-console</artifactId>
+      <version>${project.version}</version>
+      <type>war</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.rave.sandbox.jcr</groupId>
       <artifactId>rave-jcr-service</artifactId>
       <version>${project.version}</version>
     </dependency>
@@ -197,6 +204,14 @@
                 </properties>
               </deployable>
               <deployable>
+                <groupId>org.apache.rave.sandbox.jcr</groupId>
+                <artifactId>rave-jcr-console</artifactId>
+                <type>war</type>
+                <properties>
+                  <context>/console</context>
+                </properties>
+              </deployable>
+              <deployable>
                 <groupId>org.apache.rave</groupId>
                 <artifactId>rave-demo-gadgets</artifactId>
                 <type>war</type>
@@ -255,4 +270,4 @@
     </plugins>
   </build>
 
-</project>
\ No newline at end of file
+</project>

Modified: rave/sandbox/content-services/pom.xml
URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/pom.xml?rev=1375482&r1=1375481&r2=1375482&view=diff
==============================================================================
--- rave/sandbox/content-services/pom.xml (original)
+++ rave/sandbox/content-services/pom.xml Tue Aug 21 11:51:33 2012
@@ -184,6 +184,7 @@
     <module>rave-jcr-config</module>
     <module>rave-jcr-service</module>
     <module>rave-jcr</module>
+    <module>rave-jcr-console</module>
     <module>rave-jcr-integration</module>
     <module>rave-jcr-utils</module>
     <module>rave-web-hmvc</module>

Propchange: rave/sandbox/content-services/rave-jcr-console/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Aug 21 11:51:33 2012
@@ -0,0 +1 @@
+*.iml

Added: rave/sandbox/content-services/rave-jcr-console/pom.xml
URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/rave-jcr-console/pom.xml?rev=1375482&view=auto
==============================================================================
--- rave/sandbox/content-services/rave-jcr-console/pom.xml (added)
+++ rave/sandbox/content-services/rave-jcr-console/pom.xml Tue Aug 21 11:51:33 2012
@@ -0,0 +1,108 @@
+<?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.
+-->
+<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-jcr-console</artifactId>
+  <name>Apache Rave :: rave-jcr-console</name>
+  <description>Apache Rave JCR Console</description>
+  <packaging>war</packaging>
+
+  <properties>
+    <hippo-jcr-console.version>1.01.00-SNAPSHOT</hippo-jcr-console.version>
+    <hippo-jcr-console.springframework.version>3.0.5.RELEASE</hippo-jcr-console.springframework.version>
+  </properties>
+
+  <!-- temporarily add hippo snapshot repository until hippo-jcr-console is released -->
+  <repositories>
+    <repository>
+      <id>hippo-maven2-snapshots</id>
+      <name>Hippo Maven 2</name>
+      <url>http://maven.onehippo.com/maven2-snapshots/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>org.onehippo.jcr.console</groupId>
+      <artifactId>hippo-jcr-console-dependencies</artifactId>
+      <version>${hippo-jcr-console.version}</version>
+      <type>pom</type>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.onehippo.jcr.console</groupId>
+      <artifactId>hippo-jcr-console-resources</artifactId>
+      <version>${hippo-jcr-console.version}</version>
+      <type>war</type>
+    </dependency>
+
+    <!-- re-override spring-aop version forced in parent -->
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-aop</artifactId>
+      <version>${hippo-jcr-console.springframework.version}</version>
+    </dependency>
+
+    <!-- adding slf4j and log4j dependencies to be bundled (not provided) -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <!-- override default war overlay excluding META-INF folder, using invalid / to disable excluding anything -->
+          <dependentWarExcludes>/</dependentWarExcludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

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

Propchange: rave/sandbox/content-services/rave-jcr-console/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

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