You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2016/02/24 11:44:06 UTC

svn commit: r1732063 - in /sling/trunk/contrib: nosql/pom.xml pom.xml

Author: sseifert
Date: Wed Feb 24 10:44:06 2016
New Revision: 1732063

URL: http://svn.apache.org/viewvc?rev=1732063&view=rev
Log:
introduce reactor pom for nosql modules

Added:
    sling/trunk/contrib/nosql/pom.xml   (with props)
Modified:
    sling/trunk/contrib/pom.xml

Added: sling/trunk/contrib/nosql/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/nosql/pom.xml?rev=1732063&view=auto
==============================================================================
--- sling/trunk/contrib/nosql/pom.xml (added)
+++ sling/trunk/contrib/nosql/pom.xml Wed Feb 24 10:44:06 2016
@@ -0,0 +1,72 @@
+<?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.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>26</version>
+        <relativePath/>
+    </parent>
+  
+    <groupId>org.apache.sling</groupId>
+    <artifactId>org.apache.sling.contrib.nosql.reactor</artifactId>
+    <packaging>pom</packaging>
+    <version>1-SNAPSHOT</version>
+  
+    <name>Apache Sling Contrib NoSQL Modules Reactor</name>
+    <inceptionYear>2016</inceptionYear>
+  
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/nosql</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/nosql</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/trunk/contrib/nosql</url>
+    </scm>
+  
+    <modules>
+      <module>generic</module>
+      <module>couchbase-client</module>
+      <module>couchbase-resourceprovider</module>
+      <module>mongodb-resourceprovider</module>
+      <!-- Disable NoSQL launchpad from main contrib build because it fails on jenkins (reason unclear)
+      <module>launchpad</module>
+      -->
+    </modules>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <!-- Extend RAT configuration from parent pom -->
+                    <groupId>org.apache.rat</groupId>
+                    <artifactId>apache-rat-plugin</artifactId>
+                    <configuration>
+                        <excludes combine.children="append">
+                            <!-- Exclude launchpad module -->
+                            <exclude>launchpad/**</exclude>
+                        </excludes>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+</project>

Propchange: sling/trunk/contrib/nosql/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: sling/trunk/contrib/nosql/pom.xml
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Wed Feb 24 10:44:06 2016
@@ -0,0 +1 @@
+LastChangedDate LastChangedRevision LastChangedBy HeadURL Id Author

Propchange: sling/trunk/contrib/nosql/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: sling/trunk/contrib/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/pom.xml?rev=1732063&r1=1732062&r2=1732063&view=diff
==============================================================================
--- sling/trunk/contrib/pom.xml (original)
+++ sling/trunk/contrib/pom.xml Wed Feb 24 10:44:06 2016
@@ -146,13 +146,7 @@
           <module>scripting/velocity</module>
           <module>scripting/xproc</module>
 
-          <module>nosql/generic</module>
-          <module>nosql/couchbase-client</module>
-          <module>nosql/couchbase-resourceprovider</module>
-          <module>nosql/mongodb-resourceprovider</module>
-          <!-- Disable NoSQL launchpad from main contrib build because it fails on jenkins (reason unclear)
-          <module>nosql/launchpad</module>
-          -->
+          <module>nosql</module>
 
           <module>launchpad/testing</module>
           <module>launchpad/karaf</module>