You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/10/18 23:26:12 UTC

[sling-org-apache-sling-nosql-launchpad] branch master created (now ef62014)

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git.


      at ef62014  SLING-7167 Adjust READMEs

This branch includes the following new commits:

     new b560170  SLING-4381 add nosql sample launchpad
     new 7308ba2  update dependencies
     new 13009e3  update dependencies
     new 38ce5d1  update to next snapshot version until releases are available in maven central
     new 2e165c8  switch back to released versions
     new 11cf317  SLING-5077 NoSQL Couchbase Resource Provider: Make index creation compatible with Couchbase 4.0 RC0
     new d37debe  SLING-5144: Update local launchpad references to 8 or 9-SNAPSHOT
     new 2d632b2  update dependencies
     new e891f9f  exclude README.md in rat report
     new c8a4724  update dependencies
     new 54167f0  update dependencies
     new 1b4e6aa  update dependencies
     new 383294d  update dependencies
     new 121310c  update version to next development snapshot until releases available on maven central
     new 810b4e6  update to release versions
     new ef62014  SLING-7167 Adjust READMEs

The 16 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@sling.apache.org" <co...@sling.apache.org>'].

[sling-org-apache-sling-nosql-launchpad] 01/16: SLING-4381 add nosql sample launchpad

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit b5601709928e0bac30462500e78ae5ba55fff3ab
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Tue Sep 15 21:50:16 2015 +0000

    SLING-4381 add nosql sample launchpad
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1703297 13f79535-47bb-0310-9956-ffa450edef68
---
 README.md                                 |  16 +++
 pom.xml                                   | 165 ++++++++++++++++++++++++++++++
 src/main/provisioning/boot.txt            |  27 +++++
 src/main/provisioning/nosql-couchbase.txt |  44 ++++++++
 src/main/provisioning/nosql-generic.txt   |  25 +++++
 src/main/provisioning/nosql-mongodb.txt   |  38 +++++++
 6 files changed, 315 insertions(+)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8563298
--- /dev/null
+++ b/README.md
@@ -0,0 +1,16 @@
+Apache Sling NoSQL Sample Launchpad
+===================================
+
+Variant of the Sling Launchpad to run NoSQL Resource Providers in standalone mode.
+
+To run with NoSQL MongoDB resource provider:
+
+```
+java -Dsling.run.modes=nosql-mongodb -jar target/org.apache.sling.nosql.launchpad-1.0.0-SNAPSHOT.jar -c sling -f -
+```
+
+To run with NoSQL Couchbase resource provider:
+
+```
+java -Dsling.run.modes=nosql-couchbase -jar target/org.apache.sling.nosql.launchpad-1.0.0-SNAPSHOT.jar -c sling -f -
+```
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..87d6088
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,165 @@
+<?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>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>24</version>
+        <relativePath/>
+    </parent>
+
+    <artifactId>org.apache.sling.nosql.launchpad</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <packaging>slingstart</packaging>
+
+    <name>Apache Sling NoSQL Launchpad</name>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/nosql/launchpad</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/nosql/launchpad</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/trunk/contrib/nosql/launchpad</url>
+    </scm>
+    
+    <properties>
+        <sling.java.version>7</sling.java.version>
+    </properties>
+
+    <dependencies>
+    
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad</artifactId>
+            <type>slingfeature</type>
+            <classifier>slingfeature</classifier>
+            <version>8-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.nosql.generic</artifactId>
+            <version>0.5.0-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- MongoDB -->
+        <dependency>
+            <groupId>org.mongodb</groupId>
+            <artifactId>mongo-java-driver</artifactId>
+            <version>3.0.4</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
+            <version>0.5.0-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+        
+        <!-- Couchbase -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
+            <version>0.5.0-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
+            <version>0.5.0-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>io.wcm.osgi.wrapper</groupId>
+            <artifactId>io.wcm.osgi.wrapper.rxjava</artifactId>
+            <version>1.0.11-0000</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+            <version>3.3.2</version>
+            <scope>provided</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>slingstart-maven-plugin</artifactId>
+                <version>1.3.6</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <usePomDependencies>true</usePomDependencies>
+                </configuration>
+            </plugin>
+  
+            <plugin>
+                <artifactId>maven-clean-plugin</artifactId>
+                <configuration>
+                    <filesets>
+                        <fileset>
+                            <directory>${basedir}</directory>
+                            <includes>
+                                <include>derby.log</include>
+                                <include>cachedir/**</include>
+                                <include>sling/**</include>
+                                <include>jackrabbit/**</include>
+                                <include>coverage.ec</include>
+                            </includes>
+                        </fileset>
+                    </filesets>
+                </configuration>
+            </plugin>
+
+            <!-- do not deploy launchpad example into maven repository -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+      
+        </plugins>
+        <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 sling instance -->
+                            <exclude>sling/**</exclude>
+                        </excludes>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+    
+</project>
diff --git a/src/main/provisioning/boot.txt b/src/main/provisioning/boot.txt
new file mode 100644
index 0000000..fdac1d5
--- /dev/null
+++ b/src/main/provisioning/boot.txt
@@ -0,0 +1,27 @@
+#
+#  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.
+#
+# The :boot feature contains all things to bootstrap the installation.
+#
+[feature name=:boot]
+
+[settings]
+  sling.run.mode.install.options=nosql-mongodb,nosql-couchbase
+
+[artifacts]
+  org.apache.sling/org.apache.sling.launchpad//slingfeature/slingfeature
diff --git a/src/main/provisioning/nosql-couchbase.txt b/src/main/provisioning/nosql-couchbase.txt
new file mode 100644
index 0000000..5128d75
--- /dev/null
+++ b/src/main/provisioning/nosql-couchbase.txt
@@ -0,0 +1,44 @@
+#
+#  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.
+#
+# NoSQL Launchpad
+
+[feature name=nosql-couchbase]
+
+[artifacts runModes=nosql-couchbase]
+  org.apache.sling/org.apache.sling.nosql.couchbase-client
+  org.apache.sling/org.apache.sling.nosql.couchbase-resourceprovider
+  io.wcm.osgi.wrapper/io.wcm.osgi.wrapper.rxjava
+
+
+[configurations runModes=nosql-couchbase]
+  
+  # Mount NoSQL Couchbase as root resource provider factory
+  org.apache.sling.nosql.couchbase.resourceprovider.CouchbaseNoSqlResourceProviderFactory.factory.config-default
+    provider.roots=["/"]
+
+  # Configure Couchbase Client for resource provider
+  org.apache.sling.nosql.couchbase.client.CouchbaseClient.factory.config-default
+    clientId="sling-resourceprovider-couchbase"
+    couchbaseHosts="localhost:8091"
+    bucketName="test"
+    enabled=B"true"
+
+  # Remove JCR resource provider factory as required default providers
+  org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl
+    resource.resolver.required.providers=[]
diff --git a/src/main/provisioning/nosql-generic.txt b/src/main/provisioning/nosql-generic.txt
new file mode 100644
index 0000000..3bdd917
--- /dev/null
+++ b/src/main/provisioning/nosql-generic.txt
@@ -0,0 +1,25 @@
+#
+#  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.
+#
+# NoSQL Launchpad
+
+[feature name=nosql-generic]
+
+[artifacts]
+  org.apache.sling/org.apache.sling.nosql.generic
+  org.apache.commons/commons-lang3
diff --git a/src/main/provisioning/nosql-mongodb.txt b/src/main/provisioning/nosql-mongodb.txt
new file mode 100644
index 0000000..dd800ba
--- /dev/null
+++ b/src/main/provisioning/nosql-mongodb.txt
@@ -0,0 +1,38 @@
+#
+#  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.
+#
+# NoSQL Launchpad
+
+[feature name=nosql-mongodb]
+
+[artifacts runModes=nosql-mongodb]
+  org.mongodb/mongo-java-driver
+  org.apache.sling/org.apache.sling.nosql.mongodb-resourceprovider
+
+[configurations runModes=nosql-mongodb]
+  
+  # Mount NoSQL MongoDB as root resource provider factory
+  org.apache.sling.nosql.mongodb.resourceprovider.MongoDBNoSqlResourceProviderFactory.factory.config-default
+    provider.roots=["/"]
+    connectionString="localhost:27017"
+    database="sling"
+    collection="resources"
+
+  # Remove JCR resource provider factory as required default providers
+  org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl
+    resource.resolver.required.providers=[]

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 04/16: update to next snapshot version until releases are available in maven central

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 38ce5d1c758061f31ab6f82a76c2f12da56f3990
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Thu Sep 17 21:44:36 2015 +0000

    update to next snapshot version until releases are available in maven central
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1703715 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index d6bd1d1..9c42b89 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>1.0.0</version>
+            <version>1.0.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
@@ -72,7 +72,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
-            <version>0.5.0-SNAPSHOT</version>
+            <version>1.0.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         
@@ -80,13 +80,13 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>1.0.0</version>
+            <version>1.0.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>0.5.0-SNAPSHOT</version>
+            <version>1.0.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 02/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 7308ba2fc865feed414ebea973a20ceefc82cc97
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Thu Sep 17 21:31:07 2015 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1703701 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 87d6088..4ba7627 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>0.5.0-SNAPSHOT</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
 

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 07/16: SLING-5144: Update local launchpad references to 8 or 9-SNAPSHOT

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit d37debe24432a99ad93b722c5d62c45491caf423
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Oct 16 14:32:23 2015 +0000

    SLING-5144: Update local launchpad references to 8 or 9-SNAPSHOT
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1709016 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 2cbc807..4eae343 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,7 +51,7 @@
             <artifactId>org.apache.sling.launchpad</artifactId>
             <type>slingfeature</type>
             <classifier>slingfeature</classifier>
-            <version>8-SNAPSHOT</version>
+            <version>8</version>
             <scope>provided</scope>
         </dependency>
     

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 15/16: update to release versions

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 810b4e660d3dff7bf78fb83e38053f5f68de389b
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Sat Feb 27 14:00:41 2016 +0000

    update to release versions
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732646 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0229839..949cddc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>1.1.1-SNAPSHOT</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
 
@@ -72,7 +72,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
-            <version>1.1.1-SNAPSHOT</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
         
@@ -80,13 +80,13 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>1.0.3-SNAPSHOT</version>
+            <version>1.0.2</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>1.1.1-SNAPSHOT</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 14/16: update version to next development snapshot until releases available on maven central

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 121310c0e6a783d96cf0f9393ecf85ecc8ca3cdb
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 12:27:43 2016 +0000

    update version to next development snapshot until releases available on maven central
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732128 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 949cddc..0229839 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>1.1.0</version>
+            <version>1.1.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
@@ -72,7 +72,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
-            <version>1.1.0</version>
+            <version>1.1.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         
@@ -80,13 +80,13 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>1.0.2</version>
+            <version>1.0.3-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>1.1.0</version>
+            <version>1.1.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 16/16: SLING-7167 Adjust READMEs

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit ef62014510addac433a26d549ccfb6ed940173d5
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Tue Oct 3 10:06:21 2017 +0000

    SLING-7167 Adjust READMEs
    
    add uniform header linking to Sling project
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1810916 13f79535-47bb-0310-9956-ffa450edef68
---
 README.md | 33 +++++++++++++++++----------------
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/README.md b/README.md
index 8563298..3704992 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,17 @@
-Apache Sling NoSQL Sample Launchpad
-===================================
-
-Variant of the Sling Launchpad to run NoSQL Resource Providers in standalone mode.
-
-To run with NoSQL MongoDB resource provider:
-
-```
-java -Dsling.run.modes=nosql-mongodb -jar target/org.apache.sling.nosql.launchpad-1.0.0-SNAPSHOT.jar -c sling -f -
-```
-
-To run with NoSQL Couchbase resource provider:
-
-```
-java -Dsling.run.modes=nosql-couchbase -jar target/org.apache.sling.nosql.launchpad-1.0.0-SNAPSHOT.jar -c sling -f -
-```
+# Apache Sling NoSQL Launchpad
+
+This module is part of the [Apache Sling](https://sling.apache.org) project.
+
+Variant of the Sling Launchpad to run NoSQL Resource Providers in standalone mode.
+
+To run with NoSQL MongoDB resource provider:
+
+```
+java -Dsling.run.modes=nosql-mongodb -jar target/org.apache.sling.nosql.launchpad-1.0.0-SNAPSHOT.jar -c sling -f -
+```
+
+To run with NoSQL Couchbase resource provider:
+
+```
+java -Dsling.run.modes=nosql-couchbase -jar target/org.apache.sling.nosql.launchpad-1.0.0-SNAPSHOT.jar -c sling -f -
+```

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 11/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 54167f07af4efd6f8e74bbf4d7e9dfeccbf39b29
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 12:19:26 2016 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732119 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0e2371d..9731a3f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>1.0.1-SNAPSHOT</version>
+            <version>1.0.2</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 09/16: exclude README.md in rat report

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit e891f9f5b8d03867121ecb80063b119db8ee3d72
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 12:02:10 2016 +0000

    exclude README.md in rat report
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732095 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index 9b655ca..2cb378d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -155,6 +155,7 @@
                         <excludes combine.children="append">
                             <!-- Exclude sling instance -->
                             <exclude>sling/**</exclude>
+                            <exclude>README.md</exclude>
                         </excludes>
                     </configuration>
                 </plugin>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 13/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 383294d9f9cd550a036b6fb953e3b19bd3024641
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 12:25:00 2016 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732127 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f9f5e4c..949cddc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -72,7 +72,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
-            <version>1.1.0-SNAPSHOT</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
         

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 05/16: switch back to released versions

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 2e165c8fa4dc92a8331184dc0cee94efff32dfd6
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Tue Sep 29 20:52:02 2015 +0000

    switch back to released versions
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1705925 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9c42b89..bccd0fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>1.0.1-SNAPSHOT</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
 
@@ -72,7 +72,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
-            <version>1.0.1-SNAPSHOT</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
         
@@ -80,13 +80,13 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>1.0.1-SNAPSHOT</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>1.0.1-SNAPSHOT</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 10/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit c8a472408e7836d8967e216e7328b291eca258e7
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 12:07:22 2016 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732103 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 2cb378d..0e2371d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>1.1.0-SNAPSHOT</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
 

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 03/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 13009e32304f4bac3c80d17153fbb304398a8fff
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Thu Sep 17 21:35:51 2015 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1703705 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4ba7627..d6bd1d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>0.5.0-SNAPSHOT</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 12/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 1b4e6aaeeebb656ba0b9f82ec2d7523947f4b42c
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 12:22:04 2016 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732123 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 9731a3f..f9f5e4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>1.1.0-SNAPSHOT</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 08/16: update dependencies

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 2d632b27a1e8109309fbbbc73eb845be1631c7b6
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Feb 24 11:24:41 2016 +0000

    update dependencies
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1732076 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4eae343..9b655ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.generic</artifactId>
-            <version>1.0.0</version>
+            <version>1.1.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
@@ -66,13 +66,13 @@
         <dependency>
             <groupId>org.mongodb</groupId>
             <artifactId>mongo-java-driver</artifactId>
-            <version>3.0.4</version>
+            <version>3.2.2</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.mongodb-resourceprovider</artifactId>
-            <version>1.0.0</version>
+            <version>1.1.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         
@@ -80,13 +80,13 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-client</artifactId>
-            <version>1.0.0</version>
+            <version>1.0.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>1.0.1-SNAPSHOT</version>
+            <version>1.1.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-nosql-launchpad] 06/16: SLING-5077 NoSQL Couchbase Resource Provider: Make index creation compatible with Couchbase 4.0 RC0

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-launchpad.git

commit 11cf317af146dde85b296ccba076c5c65631badd
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Tue Sep 29 21:55:12 2015 +0000

    SLING-5077 NoSQL Couchbase Resource Provider: Make index creation compatible with Couchbase 4.0 RC0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1705931 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index bccd0fb..2cbc807 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.nosql.couchbase-resourceprovider</artifactId>
-            <version>1.0.0</version>
+            <version>1.0.1-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.