You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by mf...@apache.org on 2011/07/22 02:13:03 UTC

svn commit: r1149413 - in /incubator/rave/trunk: ./ rave-commons/ rave-commons/src/ rave-commons/src/main/ rave-commons/src/main/java/ rave-commons/src/test/ rave-commons/src/test/java/ rave-portal/ rave-shindig/

Author: mfranklin
Date: Fri Jul 22 00:13:01 2011
New Revision: 1149413

URL: http://svn.apache.org/viewvc?rev=1149413&view=rev
Log:
Added new rave-commons project (Supports RAVE-62)

Added:
    incubator/rave/trunk/rave-commons/
    incubator/rave/trunk/rave-commons/pom.xml
    incubator/rave/trunk/rave-commons/rave-commons.iml
    incubator/rave/trunk/rave-commons/src/
    incubator/rave/trunk/rave-commons/src/main/
    incubator/rave/trunk/rave-commons/src/main/java/
    incubator/rave/trunk/rave-commons/src/test/
    incubator/rave/trunk/rave-commons/src/test/java/
Modified:
    incubator/rave/trunk/pom.xml
    incubator/rave/trunk/rave-portal/pom.xml
    incubator/rave/trunk/rave-shindig/pom.xml

Modified: incubator/rave/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/pom.xml?rev=1149413&r1=1149412&r2=1149413&view=diff
==============================================================================
--- incubator/rave/trunk/pom.xml (original)
+++ incubator/rave/trunk/pom.xml Fri Jul 22 00:13:01 2011
@@ -86,6 +86,11 @@
     <!-- Global management of all dependencies -->
     <dependencyManagement>
         <dependencies>
+           <dependency>
+                <groupId>org.apache.rave</groupId>
+                <artifactId>rave-commons</artifactId>
+               <version>${project.version}</version>
+            </dependency>
             <dependency>
                 <groupId>org.apache.shindig</groupId>
                 <artifactId>shindig-server</artifactId>
@@ -346,6 +351,7 @@
   </build>
 
     <modules>
+        <module>rave-commons</module>
         <module>rave-shindig</module>
         <module>rave-portal</module>
     </modules>

Added: incubator/rave/trunk/rave-commons/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-commons/pom.xml?rev=1149413&view=auto
==============================================================================
--- incubator/rave/trunk/rave-commons/pom.xml (added)
+++ incubator/rave/trunk/rave-commons/pom.xml Fri Jul 22 00:13:01 2011
@@ -0,0 +1,38 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <artifactId>rave-project</artifactId>
+        <groupId>org.apache.rave</groupId>
+        <version>0.2-incubating-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>rave-commons</artifactId>
+    <name>Apache Rave :: rave-commons</name>
+    <description>Apache Rave Commons</description>
+    <packaging>jar</packaging>
+
+</project>
\ No newline at end of file

Added: incubator/rave/trunk/rave-commons/rave-commons.iml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-commons/rave-commons.iml?rev=1149413&view=auto
==============================================================================
--- incubator/rave/trunk/rave-commons/rave-commons.iml (added)
+++ incubator/rave/trunk/rave-commons/rave-commons.iml Fri Jul 22 00:13:01 2011
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
+  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
+    <output url="file://$MODULE_DIR$/target/classes" />
+    <output-test url="file://$MODULE_DIR$/target/test-classes" />
+    <exclude-output />
+    <content url="file://$MODULE_DIR$">
+      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
+      <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
+      <excludeFolder url="file://$MODULE_DIR$/target" />
+    </content>
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+    <orderEntry type="library" scope="PROVIDED" name="Maven: javax.servlet:servlet-api:2.5" level="project" />
+    <orderEntry type="library" scope="PROVIDED" name="Maven: javax.servlet.jsp:jsp-api:2.1" level="project" />
+    <orderEntry type="library" scope="PROVIDED" name="Maven: javax.el:el-api:1.0" level="project" />
+    <orderEntry type="library" scope="PROVIDED" name="Maven: commons-logging:commons-logging:1.1.1" level="project" />
+  </component>
+</module>
+

Modified: incubator/rave/trunk/rave-portal/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal/pom.xml?rev=1149413&r1=1149412&r2=1149413&view=diff
==============================================================================
--- incubator/rave/trunk/rave-portal/pom.xml (original)
+++ incubator/rave/trunk/rave-portal/pom.xml Fri Jul 22 00:13:01 2011
@@ -50,6 +50,11 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.rave</groupId>
+            <artifactId>rave-commons</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.rave</groupId>
             <artifactId>rave-shindig</artifactId>
             <type>war</type>
             <scope>provided</scope>

Modified: incubator/rave/trunk/rave-shindig/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-shindig/pom.xml?rev=1149413&r1=1149412&r2=1149413&view=diff
==============================================================================
--- incubator/rave/trunk/rave-shindig/pom.xml (original)
+++ incubator/rave/trunk/rave-shindig/pom.xml Fri Jul 22 00:13:01 2011
@@ -41,6 +41,11 @@
 
   <dependencies>
     <dependency>
+        <groupId>org.apache.rave</groupId>
+        <artifactId>rave-commons</artifactId>
+    </dependency>
+
+    <dependency>
       <groupId>org.apache.shindig</groupId>
       <artifactId>shindig-server</artifactId>
       <type>war</type>