Jenkins build is back to normal : sling-contrib-extensions-distribution-it-1.8 #383

2017-10-20 Thread Apache Jenkins Server
See 




[sling-org-apache-sling-pipes] 04/04: Merge branch 'master' of github.com:apache/sling-org-apache-sling-pipes

2017-10-20 Thread npeltier
This is an automated email from the ASF dual-hosted git repository.

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

commit 17d88e43d3a372e50c80abfb66e6c18353937804
Merge: 07befc6 51194e6
Author: npeltier 
AuthorDate: Fri Oct 20 22:36:54 2017 +0200

Merge branch 'master' of github.com:apache/sling-org-apache-sling-pipes

 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-pipes] branch master updated (51194e6 -> 17d88e4)

2017-10-20 Thread npeltier
This is an automated email from the ASF dual-hosted git repository.

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


from 51194e6  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 3ce5caa  SLING-7172 move $ to children pipe
 new af8e64e  SLING-7172 add parent(s) pipes
 new 07befc6  SLING-7172 introduce siblings pipe
 new 17d88e4  Merge branch 'master' of 
github.com:apache/sling-org-apache-sling-pipes

The 4 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.


Summary of changes:
 README.md  | 18 +-
 .../java/org/apache/sling/pipes/PipeBuilder.java   | 23 +
 .../sling/pipes/internal/PipeBuilderImpl.java  | 26 +++
 .../apache/sling/pipes/internal/PlumberImpl.java   | 10 --
 .../sling/pipes/internal/PlumberServlet.java   |  3 +-
 .../AbstractExpressionSlingQueryPipe.java} | 39 ++
 .../AbstractSlingQueryPipe.java}   | 39 +++---
 .../pipes/internal/slingQuery/ChildrenPipe.java}   | 28 +++-
 .../internal/{ => slingQuery}/ParentPipe.java  | 21 +---
 .../ParentsPipe.java}  | 25 ++
 .../pipes/internal/slingQuery/SiblingsPipe.java}   | 30 +++--
 .../java/org/apache/sling/pipes/package-info.java  |  2 +-
 .../org/apache/sling/pipes/AbstractPipeTest.java   |  3 ++
 .../org/apache/sling/pipes/PipeBuilderTest.java|  8 ++---
 .../ChildrenPipeTest.java} |  6 ++--
 .../ParentPipeTest.java}   | 29 ++--
 .../ParentsPipeTest.java}  | 32 --
 .../SiblingsPipeTest.java} | 30 +++--
 .../SLING-INF/jcr_root/content/fruits.json |  5 +++
 .../jcr_root/etc/pipes-it/fruit-list.json  |  2 +-
 .../resources/{slingQuery.json => children.json}   |  2 +-
 21 files changed, 192 insertions(+), 189 deletions(-)
 copy src/main/java/org/apache/sling/pipes/internal/{XPathPipe.java => 
slingQuery/AbstractExpressionSlingQueryPipe.java} (51%)
 rename src/main/java/org/apache/sling/pipes/internal/{SlingQueryPipe.java => 
slingQuery/AbstractSlingQueryPipe.java} (62%)
 copy src/{test/java/org/apache/sling/pipes/dummies/DummyNull.java => 
main/java/org/apache/sling/pipes/internal/slingQuery/ChildrenPipe.java} (60%)
 copy src/main/java/org/apache/sling/pipes/internal/{ => 
slingQuery}/ParentPipe.java (73%)
 rename src/main/java/org/apache/sling/pipes/internal/{ParentPipe.java => 
slingQuery/ParentsPipe.java} (67%)
 copy src/{test/java/org/apache/sling/pipes/dummies/DummyNull.java => 
main/java/org/apache/sling/pipes/internal/slingQuery/SiblingsPipe.java} (66%)
 copy src/test/java/org/apache/sling/pipes/internal/{SlingQueryPipeTest.java => 
slingQuery/ChildrenPipeTest.java} (89%)
 copy src/test/java/org/apache/sling/pipes/internal/{SlingQueryPipeTest.java => 
slingQuery/ParentPipeTest.java} (58%)
 copy src/test/java/org/apache/sling/pipes/internal/{SlingQueryPipeTest.java => 
slingQuery/ParentsPipeTest.java} (61%)
 rename src/test/java/org/apache/sling/pipes/internal/{SlingQueryPipeTest.java 
=> slingQuery/SiblingsPipeTest.java} (58%)
 rename src/test/resources/{slingQuery.json => children.json} (75%)

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


[sling-org-apache-sling-pipes] 03/04: SLING-7172 introduce siblings pipe

2017-10-20 Thread npeltier
This is an automated email from the ASF dual-hosted git repository.

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

commit 07befc6da634874f926659f70c5967f82c7facbe
Author: npeltier 
AuthorDate: Fri Oct 20 22:31:59 2017 +0200

SLING-7172 introduce siblings pipe
---
 .../java/org/apache/sling/pipes/PipeBuilder.java   | 16 ++
 .../sling/pipes/internal/PipeBuilderImpl.java  | 18 +++
 .../apache/sling/pipes/internal/PlumberImpl.java   |  2 ++
 .../pipes/internal/slingQuery/SiblingsPipe.java| 37 ++
 .../org/apache/sling/pipes/AbstractPipeTest.java   |  1 +
 .../org/apache/sling/pipes/PipeBuilderTest.java|  2 +-
 .../internal/slingQuery/SiblingsPipeTest.java  | 36 +
 .../SLING-INF/jcr_root/content/fruits.json |  4 +++
 8 files changed, 103 insertions(+), 13 deletions(-)

diff --git a/src/main/java/org/apache/sling/pipes/PipeBuilder.java 
b/src/main/java/org/apache/sling/pipes/PipeBuilder.java
index 3fe25c2..8033a3a 100644
--- a/src/main/java/org/apache/sling/pipes/PipeBuilder.java
+++ b/src/main/java/org/apache/sling/pipes/PipeBuilder.java
@@ -81,6 +81,13 @@ public interface PipeBuilder {
 PipeBuilder children(String expr);
 
 /**
+ * attach a sling query siblings pipe to the current context
+ * @param expr sling query expression
+ * @return updated instance of PipeBuilder
+ */
+PipeBuilder siblings(String expr);
+
+/**
  * attach a rm pipe to the current context
  * @return updated instance of PipeBuilder
  */
@@ -130,26 +137,23 @@ public interface PipeBuilder {
  * attach a parents pipe to the current context
  * @param expr expression
  * @return updated instance of PipeBuilder
- * @throws IllegalAccessException in case it's called with wrong # of 
arguments
  */
-PipeBuilder parents(String expr) throws IllegalAccessException;
+PipeBuilder parents(String expr);
 
 /**
  * attach a reference pipe to the current context
  * @param expr reference
  * @return updated instance of PipeBuilder
- * @throws IllegalAccessException in case it's called with wrong # of 
arguments
  */
-PipeBuilder ref(String expr)throws IllegalAccessException;
+PipeBuilder ref(String expr);
 
 
 /**
  * attach a not pipe to the current context
  * @param expr reference
  * @return updated instance of PipeBuilder
- * @throws IllegalAccessException in case it's called with wrong # of 
arguments
  */
-PipeBuilder not(String expr)throws IllegalAccessException;
+PipeBuilder not(String expr);
 
 /**
  * parameterized current pipe in the context
diff --git a/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java 
b/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java
index 85e78e5..87a4227 100644
--- a/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java
+++ b/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java
@@ -26,6 +26,7 @@ import org.apache.sling.pipes.*;
 import org.apache.sling.pipes.internal.slingQuery.ChildrenPipe;
 import org.apache.sling.pipes.internal.slingQuery.ParentPipe;
 import org.apache.sling.pipes.internal.slingQuery.ParentsPipe;
+import org.apache.sling.pipes.internal.slingQuery.SiblingsPipe;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -165,18 +166,23 @@ public class PipeBuilderImpl implements PipeBuilder {
 }
 
 @Override
-public PipeBuilder parents(String expr) throws IllegalAccessException {
-return pipe(ParentsPipe.RESOURCE_TYPE).expr(expr);
+public PipeBuilder parents(String expr) {
+return pipeWithExpr(ParentsPipe.RESOURCE_TYPE, expr);
 }
 
 @Override
-public PipeBuilder ref(String expr) throws IllegalAccessException {
-return pipe(ReferencePipe.RESOURCE_TYPE).expr(expr);
+public PipeBuilder siblings(String expr) {
+return pipeWithExpr(SiblingsPipe.RESOURCE_TYPE, expr);
 }
 
 @Override
-public PipeBuilder not(String expr) throws IllegalAccessException {
-return pipe(NotPipe.RESOURCE_TYPE).expr(expr);
+public PipeBuilder ref(String expr) {
+return pipeWithExpr(ReferencePipe.RESOURCE_TYPE, expr);
+}
+
+@Override
+public PipeBuilder not(String expr) {
+return pipeWithExpr(NotPipe.RESOURCE_TYPE, expr);
 }
 
 @Override
diff --git a/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java 
b/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java
index 31d4840..a1e43be 100644
--- a/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java
+++ b/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java
@@ -56,6 +56,7 @@ import org.apache.sling.pipes.*;
 import org.apache.sling.pipes.internal.slingQuery.ChildrenPipe;
 import org.apache.sling.pipes.internal.slingQuery.ParentPipe;
 import 

[sling-org-apache-sling-pipes] 02/04: SLING-7172 add parent(s) pipes

2017-10-20 Thread npeltier
This is an automated email from the ASF dual-hosted git repository.

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

commit af8e64ef6c7391490a9df483a58dea1e1ae923b3
Author: npeltier 
AuthorDate: Fri Oct 20 21:23:53 2017 +0200

SLING-7172 add parent(s) pipes

- move parent pipe to be a sling query pipe,
- added abstract sling query pipe to avoid duplications,
- added parents pipe,
- added unit tests for both parent and parents pipe
---
 .../java/org/apache/sling/pipes/PipeBuilder.java   |  7 
 .../sling/pipes/internal/PipeBuilderImpl.java  |  8 
 .../apache/sling/pipes/internal/PlumberImpl.java   |  6 ++-
 .../sling/pipes/internal/PlumberServlet.java   |  1 +
 .../AbstractExpressionSlingQueryPipe.java} | 44 +-
 .../AbstractSlingQueryPipe.java}   | 39 ++-
 .../internal/{ => slingQuery}/ChildrenPipe.java| 29 +++---
 .../internal/{ => slingQuery}/ParentPipe.java  | 21 +--
 .../ParentsPipe.java}  | 25 ++--
 .../org/apache/sling/pipes/AbstractPipeTest.java   |  2 +
 .../{ => slingQuery}/ChildrenPipeTest.java |  2 +-
 .../ParentPipeTest.java}   | 29 ++
 .../ParentsPipeTest.java}  | 32 +++-
 .../SLING-INF/jcr_root/content/fruits.json |  1 +
 14 files changed, 111 insertions(+), 135 deletions(-)

diff --git a/src/main/java/org/apache/sling/pipes/PipeBuilder.java 
b/src/main/java/org/apache/sling/pipes/PipeBuilder.java
index 2082f23..3fe25c2 100644
--- a/src/main/java/org/apache/sling/pipes/PipeBuilder.java
+++ b/src/main/java/org/apache/sling/pipes/PipeBuilder.java
@@ -126,6 +126,13 @@ public interface PipeBuilder {
  */
 PipeBuilder parent();
 
+/**
+ * attach a parents pipe to the current context
+ * @param expr expression
+ * @return updated instance of PipeBuilder
+ * @throws IllegalAccessException in case it's called with wrong # of 
arguments
+ */
+PipeBuilder parents(String expr) throws IllegalAccessException;
 
 /**
  * attach a reference pipe to the current context
diff --git a/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java 
b/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java
index 15e70f2..85e78e5 100644
--- a/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java
+++ b/src/main/java/org/apache/sling/pipes/internal/PipeBuilderImpl.java
@@ -23,6 +23,9 @@ import org.apache.sling.api.resource.ResourceResolver;
 import org.apache.sling.api.resource.ResourceUtil;
 import org.apache.sling.event.jobs.Job;
 import org.apache.sling.pipes.*;
+import org.apache.sling.pipes.internal.slingQuery.ChildrenPipe;
+import org.apache.sling.pipes.internal.slingQuery.ParentPipe;
+import org.apache.sling.pipes.internal.slingQuery.ParentsPipe;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -162,6 +165,11 @@ public class PipeBuilderImpl implements PipeBuilder {
 }
 
 @Override
+public PipeBuilder parents(String expr) throws IllegalAccessException {
+return pipe(ParentsPipe.RESOURCE_TYPE).expr(expr);
+}
+
+@Override
 public PipeBuilder ref(String expr) throws IllegalAccessException {
 return pipe(ReferencePipe.RESOURCE_TYPE).expr(expr);
 }
diff --git a/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java 
b/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java
index c6002fc..31d4840 100644
--- a/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java
+++ b/src/main/java/org/apache/sling/pipes/internal/PlumberImpl.java
@@ -53,6 +53,9 @@ import org.apache.sling.event.jobs.Job;
 import org.apache.sling.event.jobs.JobManager;
 import org.apache.sling.event.jobs.consumer.JobConsumer;
 import org.apache.sling.pipes.*;
+import org.apache.sling.pipes.internal.slingQuery.ChildrenPipe;
+import org.apache.sling.pipes.internal.slingQuery.ParentPipe;
+import org.apache.sling.pipes.internal.slingQuery.ParentsPipe;
 import org.osgi.service.component.annotations.Activate;
 import org.osgi.service.component.annotations.Component;
 import org.osgi.service.component.annotations.Reference;
@@ -113,13 +116,14 @@ public class PlumberImpl implements Plumber, JobConsumer {
 registerPipe(XPathPipe.RESOURCE_TYPE, XPathPipe.class);
 registerPipe(ReferencePipe.RESOURCE_TYPE, ReferencePipe.class);
 registerPipe(RemovePipe.RESOURCE_TYPE, RemovePipe.class);
-registerPipe(ParentPipe.RESOURCE_TYPE, ParentPipe.class);
+registerPipe(ParentsPipe.RESOURCE_TYPE, ParentsPipe.class);
 registerPipe(MovePipe.RESOURCE_TYPE, MovePipe.class);
 registerPipe(PathPipe.RESOURCE_TYPE, PathPipe.class);
 registerPipe(FilterPipe.RESOURCE_TYPE, FilterPipe.class);
 

[sling-org-apache-sling-pipes] 01/04: SLING-7172 move $ to children pipe

2017-10-20 Thread npeltier
This is an automated email from the ASF dual-hosted git repository.

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

commit 3ce5caa8302616036874f01267f690682a02d4b1
Author: npeltier 
AuthorDate: Fri Oct 20 17:57:58 2017 +0200

SLING-7172 move $ to children pipe
---
 README.md  | 18 +-
 src/main/java/org/apache/sling/pipes/PipeBuilder.java  |  4 ++--
 .../{SlingQueryPipe.java => ChildrenPipe.java} | 10 +-
 .../apache/sling/pipes/internal/PipeBuilderImpl.java   |  4 ++--
 .../org/apache/sling/pipes/internal/PlumberImpl.java   |  2 +-
 .../apache/sling/pipes/internal/PlumberServlet.java|  2 +-
 src/main/java/org/apache/sling/pipes/package-info.java |  2 +-
 .../java/org/apache/sling/pipes/PipeBuilderTest.java   |  6 +++---
 .../{SlingQueryPipeTest.java => ChildrenPipeTest.java} |  4 ++--
 .../SLING-INF/jcr_root/etc/pipes-it/fruit-list.json|  2 +-
 src/test/resources/{slingQuery.json => children.json}  |  2 +-
 11 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/README.md b/README.md
index 2105803..badffb4 100644
--- a/README.md
+++ b/README.md
@@ -47,10 +47,10 @@ a pipe configuration is a jcr node, with:
 rather dummy pipe, outputs what is in input (so what is configured in path). 
Handy for doing some test mostly, and giving basic functionalities to others 
that inherit from it
 * `sling:resourceType` is `slingPipes/base`
 
- SlingQuery Pipe
+ children Pipe
 executes $(getInput()).children(expression)
-* `sling:resourceType` is `slingPipes/slingQuery`
-* `expr` mandatory property, contains slingQuery expression through which 
getInput()'s children will be computed to getOutput()
+* `sling:resourceType` is `slingPipes/children`
+* `expr` mandatory property, contains children expression through which 
getInput()'s children will be computed to getOutput()
 
  JsonPipe
 feeds bindings with remote json
@@ -110,7 +110,7 @@ execute the pipe referenced in path property
 
  Write Pipe
 writes given properties to current input
-* `sling:resourceType` is `slingPipes/slingQuery`
+* `sling:resourceType` is `slingPipes/children`
 * `conf` node tree that will be copied to the current input of the pipe, each 
node's properties 
 names and value will be written to the input resource. Input resource will be 
outputed. 
 
@@ -201,7 +201,7 @@ if parameter dryRun is set to true, and the executed pipe 
is supposed to modify
 
 ## sample configurations 
 
-### slingQuery | write
+### children | write
 this pipe parse all profile nodes, and 
 ```
 {
@@ -210,7 +210,7 @@ this pipe parse all profile nodes, and
   "jcr:description":"prefix all full names of profile with "Mr" or "Ms" 
depending on gender",
   "conf":{
 "profile": {
-"sling:resourceType":"slingPipes/slingQuery",
+"sling:resourceType":"slingPipes/children",
 "expr":"nt:unstructured#profile",
 "path":"/home/users"
 },
@@ -225,7 +225,7 @@ this pipe parse all profile nodes, and
 }
 ```
 
-### slingQuery | multiProperty | authorizable | write
+### children | multiProperty | authorizable | write
 ```
 {
   "jcr:primaryType": "sling:Folder",
@@ -239,7 +239,7 @@ this pipe parse all profile nodes, and
   "jcr:description": "outputs all badge component resources",
   "expr": "[sling:resourceType=myApp/components/badge]",
   "path": "/etc/badges/badges-admin/jcr:content",
-  "sling:resourceType": "slingPipes/slingQuery"
+  "sling:resourceType": "slingPipes/children"
   },
 "profile": {
   "jcr:primaryType": "sling:Folder",
@@ -343,5 +343,5 @@ some other samples are in 
https://github.com/npeltier/sling-pipes/tree/master/sr
 # Compatibility
 For running this tool on a sling instance you need:
 - java 8 (Nashorn is used for expression)
-- slingQuery (3.0.0) (used in SlingQueryPipe)
+- children (3.0.0) (used in childrenPipe)
 - jackrabbit api (2.7.5+) (used in AuthorizablePipe)
diff --git a/src/main/java/org/apache/sling/pipes/PipeBuilder.java 
b/src/main/java/org/apache/sling/pipes/PipeBuilder.java
index 17089a3..2082f23 100644
--- a/src/main/java/org/apache/sling/pipes/PipeBuilder.java
+++ b/src/main/java/org/apache/sling/pipes/PipeBuilder.java
@@ -74,11 +74,11 @@ public interface PipeBuilder {
 PipeBuilder xpath(String expr);
 
 /**
- * attach a sling query pipe to the current context
+ * attach a sling query children pipe to the current context
  * @param expr sling query expression
  * @return updated instance of PipeBuilder
  */
-PipeBuilder $(String expr);
+PipeBuilder children(String expr);
 
 /**
  * attach a rm pipe to the current context
diff --git a/src/main/java/org/apache/sling/pipes/internal/SlingQueryPipe.java 
b/src/main/java/org/apache/sling/pipes/internal/ChildrenPipe.java
similarity index 81%
rename from 

[sling-org-apache-sling-tracer] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-tracer.git


The following commit(s) were added to refs/heads/master by this push:
 new 2b26fc0  SLING-7162 - Update SCM information in all POM files to 
reference Git
2b26fc0 is described below

commit 2b26fc0c816851933e92fa715166500ab94a47bf
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 852e9b9..d85559a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,9 +42,9 @@
   
 
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/tracer
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/tracer
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/tracer
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tracer.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tracer.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-tracer.git
   
 
 

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


[sling-org-apache-sling-installer-factory-subsystems] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-subsystems.git

commit 1c3174fb3df921beb55c857785300a31400a7cbd
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:28:12 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 80323f7..a2e0404 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,8 +36,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-subsystems.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/subsystems
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-subsystems.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-subsystems.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-subsystems.git
 
 
 

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


[sling-org-apache-sling-testing-email] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-email.git

commit 35688dd085da53f8408f8481f7d11a7e5476ab3d
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 20a98ee..6f9d5e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 Contains utilities that assist in validating email-enabled OSGi 
applications.
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/email
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-email.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/email
-http://svn.apache.org/viewvc/sling/trunk/testing/email
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-email.git.git
 
 
 

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


[sling-org-apache-sling-installer-factory-subsystems] branch master updated (7a07ac1 -> 1c3174f)

2017-10-20 Thread rombert
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-installer-factory-subsystems.git.


from 7a07ac1  SLING-7167 Adjust READMEs
 new 32aadd0  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 1c3174f  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-resource-inventory] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-resource-inventory.git


The following commit(s) were added to refs/heads/master by this push:
 new 9ed7dc3  SLING-7162 - Update SCM information in all POM files to 
reference Git
9ed7dc3 is described below

commit 9ed7dc3c6617b3571f3461e7a6b3d4096c7a19a6
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 843b3a7..430d0d9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 Apache Sling Inventory Printer Based on Resources
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/resource-inventory
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/resource-inventory
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/resource-inventory
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-inventory.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-inventory.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-resource-inventory.git
 
 
 

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


[sling-org-apache-sling-models-impl] branch master updated (20cecea -> 5ea27c9)

2017-10-20 Thread rombert
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-models-impl.git.


from 20cecea  SLING-7187 - handle conflicts between annotations
 new 3c89f0c  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 5ea27c9  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-nosql-couchbase-resourceprovider] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-couchbase-resourceprovider.git


The following commit(s) were added to refs/heads/master by this push:
 new bfe196d  SLING-7162 - Update SCM information in all POM files to 
reference Git
bfe196d is described below

commit bfe196d83f9b0ec63b414d87b7f36abf741a529d
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 33bc9d6..8d0ab64 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 Resource Provider with Couchbase Persistence for Apache 
Sling.
   
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/nosql/couchbase-resourceprovider
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/nosql/couchbase-resourceprovider
-
http://svn.apache.org/viewvc/sling/trunk/contrib/nosql/couchbase-resourceprovider
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-couchbase-resourceprovider.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-couchbase-resourceprovider.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-nosql-couchbase-resourceprovider.git
 
 
 

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


[sling-org-apache-sling-validation-api] branch master updated (0bc944e -> a595f92)

2017-10-20 Thread rombert
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-validation-api.git.


from 0bc944e  SLING-7167 Adjust READMEs
 new e5e89fc  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new a595f92  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-testing-serversetup] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-serversetup.git

commit e74a2319743d72687fdb44d2162c49c54218c23b
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:28:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4a12835..d3f5543 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,8 +38,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-serversetup.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/serversetup
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-serversetup.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-serversetup.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-serversetup.git
 
 
 

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


[sling-org-apache-sling-scripting-sightly-repl] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-sightly-repl.git


The following commit(s) were added to refs/heads/master by this push:
 new 216d8ee  SLING-7162 - Update SCM information in all POM files to 
reference Git
216d8ee is described below

commit 216d8ee4d4efce8e452f075901ca4cd7005dc39c
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 223efb8..c7ff850 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,9 +34,9 @@
 REPL for Apache Sling Scripting HTL engine
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/sightly/repl
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/sightly/repl
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/sightly/repl
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-repl.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-repl.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly-repl.git
 
 
 

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


[sling-org-apache-sling-installer-factory-configuration] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-configuration.git

commit e246d8f508026b101f845a6cb9a3dd5c49cacc93
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:26:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4f70630..c612395 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,8 +36,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-configuration.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/configuration
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-configuration.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-configuration.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-configuration.git
 
 
 

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


[sling-org-apache-sling-jcr-resourcesecurity] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-resourcesecurity.git


The following commit(s) were added to refs/heads/master by this push:
 new 8eb3467  SLING-7162 - Update SCM information in all POM files to 
reference Git
8eb3467 is described below

commit 8eb34671fa420552d985d5cf237e6d99c8d9f1a4
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 41a1b85..3d8b1a5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/jcr/resourcesecurity
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/jcr/resourcesecurity
-
http://svn.apache.org/viewvc/sling/trunk/contrib/jcr/resourcesecurity
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-resourcesecurity.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-resourcesecurity.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-resourcesecurity.git
 
 
 

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


[sling-org-apache-sling-installer-factory-deploymentpackage] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-deploymentpackage.git

commit d6fb1400ebe39cf7a14c1aa97eb50582a574
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 164cb8d..3b69799 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/factories/deploymentpck
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-deploymentpackage.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/deploymentpck
-
http://svn.apache.org/viewvc/sling/trunk/installer/factories/deploymentpck/
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-deploymentpackage.git.git
 
 
 

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


[sling-org-apache-sling-hc-annotations] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-hc-annotations.git


The following commit(s) were added to refs/heads/master by this push:
 new 7f5c067  SLING-7162 - Update SCM information in all POM files to 
reference Git
7f5c067 is described below

commit 7f5c06722ce335ecea12067134f61c49e57b4360
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4ad2d11..0de6641 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/annotations
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/annotations
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/healthcheck/annotations
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-annotations.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-annotations.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-hc-annotations.git
 
 
 

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


[sling-org-apache-sling-paxexam-util] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-paxexam-util.git

commit 9afb76074381da4a997c2ce7f9c9a04ddb587e5f
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:28:13 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4d5cfa7..96b7e9e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,8 +42,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-paxexam-util.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/sling-pax-util
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-paxexam-util.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-paxexam-util.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-paxexam-util.git
 
 
 

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


[sling-org-apache-sling-launchpad-installer] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-launchpad-installer.git


The following commit(s) were added to refs/heads/master by this push:
 new 58c5cb2  SLING-7162 - Update SCM information in all POM files to 
reference Git
58c5cb2 is described below

commit 58c5cb2e0619e29231608591922caa71bbee0fb8
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1fffcb1..cc07f16 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,9 +30,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/launchpad/installer
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/launchpad/installer
-http://svn.apache.org/viewvc/sling/trunk/launchpad/installer
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-installer.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-installer.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-launchpad-installer.git
 
 
 

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


[sling-org-apache-sling-hc-support] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-hc-support.git


The following commit(s) were added to refs/heads/master by this push:
 new e1b006c  SLING-7162 - Update SCM information in all POM files to 
reference Git
e1b006c is described below

commit e1b006c18a9954eac1988ccc4c0bcbb1d5988521
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 51bc2ff..19a6183 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/support
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/support
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/healthcheck/support
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-support.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-support.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-hc-support.git
 
 
 

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


[sling-org-apache-sling-launchpad-testing] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-launchpad-testing.git


The following commit(s) were added to refs/heads/master by this push:
 new 997ae71  SLING-7162 - Update SCM information in all POM files to 
reference Git
997ae71 is described below

commit 997ae71709ef235e44a3038a7517179f4275c293
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1983a7f..ca80c56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,9 +38,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/launchpad/testing
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/launchpad/testing
-http://svn.apache.org/viewvc/sling/trunk/launchpad/testing
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-testing.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-testing.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-launchpad-testing.git
 
 
 

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


[sling-org-apache-sling-paxexam-util] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-paxexam-util.git

commit 4ea424f4687f11a297cd66b7cec4c8dee3d2bd3f
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 84720ee..4d5cfa7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/sling-pax-util
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-paxexam-util.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/sling-pax-util
-
http://svn.apache.org/viewvc/sling/trunk/testing/sling-pax-util
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-paxexam-util.git.git
 
 
 

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


[sling-org-apache-sling-installer-factory-deploymentpackage] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-deploymentpackage.git

commit fd85ea0b9ff38580b1c60655629d5db2a1c7d015
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:26:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3b69799..dd23ef4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,8 +36,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-deploymentpackage.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/deploymentpck
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-deploymentpackage.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-deploymentpackage.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-deploymentpackage.git
 
 
 

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


[sling-slingstart-maven-plugin] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-slingstart-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 74ee87c  SLING-7162 - Update SCM information in all POM files to 
reference Git
74ee87c is described below

commit 74ee87cf193f83b8dd4f87009a07337aa450b1cc
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:18 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3116145..a20d24b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,16 +37,16 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/maven/slingstart-maven-plugin
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/maven/slingstart-maven-plugin
-
http://svn.apache.org/viewvc/sling/trunk/tooling/maven/slingstart-maven-plugin
+
scm:git:https://gitbox.apache.org/repos/asf/sling-slingstart-maven-plugin.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-slingstart-maven-plugin.git
+
https://gitbox.apache.org/repos/asf?p=sling-slingstart-maven-plugin.git
 
 
 
 
 
 apache.website
-
scm:svn:https://svn.apache.org/repos/asf/sling/site/trunk/content/components/${maven.site.path}
+
https://gitbox.apache.org/repos/asf?p=sling-slingstart-maven-plugin.git
 
 
 

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


[sling-org-apache-sling-scripting-javascript] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-javascript.git


The following commit(s) were added to refs/heads/master by this push:
 new 58aae3a  SLING-7162 - Update SCM information in all POM files to 
reference Git
58aae3a is described below

commit 58aae3a7d8ba4ca127b324857dc3d88cc94524a7
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2676ea3..d98f6c3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 Support for JavaScript scripting
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/javascript
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/javascript
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/javascript
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-javascript.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-javascript.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-javascript.git
 
 
 

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


[sling-org-apache-sling-jcr-contentparser] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-contentparser.git


The following commit(s) were added to refs/heads/master by this push:
 new ef7ad23  SLING-7162 - Update SCM information in all POM files to 
reference Git
ef7ad23 is described below

commit ef7ad2313b03eadc4073e8a0178d6a6693da8c3a
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index e7a5355..d19ae51 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/contentparser
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/contentparser
-
http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/contentparser
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-contentparser.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-contentparser.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-contentparser.git
 
 
 

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


[sling-org-apache-sling-hc-api] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-hc-api.git


The following commit(s) were added to refs/heads/master by this push:
 new 4f0cd54  SLING-7162 - Update SCM information in all POM files to 
reference Git
4f0cd54 is described below

commit 4f0cd547472154d2d23665ae547f3b519802d2a9
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 86ded93..85a91dd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,9 +39,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/api
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/api
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/healthcheck/api
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-api.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-api.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-hc-api.git
 
 
 

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


[sling-org-apache-sling-xss] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-xss.git


The following commit(s) were added to refs/heads/master by this push:
 new 1b1e969  SLING-7162 - Update SCM information in all POM files to 
reference Git
1b1e969 is described below

commit 1b1e9699077b25f79df8521294cd45df134e
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:18 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5f3be67..ef35ad6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,9 +40,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/xss
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/xss
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/xss
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-xss.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-xss.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-xss.git
 
 
 

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


[sling-org-apache-sling-urlrewriter] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-urlrewriter.git


The following commit(s) were added to refs/heads/master by this push:
 new fe2e35b  SLING-7162 - Update SCM information in all POM files to 
reference Git
fe2e35b is described below

commit fe2e35b21882df0386118c35563651fe8192c936
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index d2d1b95..d815b94 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
   
 
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/urlrewriter
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/urlrewriter
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/urlrewriter
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-urlrewriter.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-urlrewriter.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-urlrewriter.git
   
 
   

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


[sling-org-apache-sling-javax-activation] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-javax-activation.git


The following commit(s) were added to refs/heads/master by this push:
 new 32e80e8  SLING-7162 - Update SCM information in all POM files to 
reference Git
32e80e8 is described below

commit 32e80e8296b2f08a53228a6b01fd50a3b73a4da4
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index a602f38..e94f8d1 100755
--- a/pom.xml
+++ b/pom.xml
@@ -40,9 +40,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/javax.activation
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/javax.activation
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/javax.activation
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-javax-activation.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-javax-activation.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-javax-activation.git
 
 
 

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


[sling-org-apache-sling-jcr-base] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-base.git


The following commit(s) were added to refs/heads/master by this push:
 new 6e8b189  SLING-7162 - Update SCM information in all POM files to 
reference Git
6e8b189 is described below

commit 6e8b1894133d22f5397b644ec689b93f4bda2650
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index bfbcd77..bab4357 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/base
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/base
-http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/base
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-base.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-base.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-base.git
 
 
 

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


[sling-org-apache-sling-installer-factory-packages] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-packages.git

commit eec22585650ec1e205f4b70b18209b18add6e37b
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 699121c..324af87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/factories/packages
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-packages.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/packages
-
http://svn.apache.org/viewvc/sling/trunk/installer/factories/packages
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-packages.git.git
 
 
 

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


[sling-org-apache-sling-superimposing] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-superimposing.git


The following commit(s) were added to refs/heads/master by this push:
 new 1cb76a7  SLING-7162 - Update SCM information in all POM files to 
reference Git
1cb76a7 is described below

commit 1cb76a7da5b8b80afcecdd8b0b47408fc5b0017c
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2090bb5..8de80ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/superimposing
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/superimposing
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/superimposing
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-superimposing.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-superimposing.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-superimposing.git
 
 
 

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


[sling-org-apache-sling-jcr-jackrabbit-accessmanager] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-jackrabbit-accessmanager.git


The following commit(s) were added to refs/heads/master by this push:
 new 0e9c2a6  SLING-7162 - Update SCM information in all POM files to 
reference Git
0e9c2a6 is described below

commit 0e9c2a6e86d08ca4d6fd04cce6a4466457d26602
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:23:57 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 926d71e..ebe52be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,15 +36,9 @@
 
 
 
-
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jackrabbit-accessmanager
-
-
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jackrabbit-accessmanager
-
-
-
http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/jackrabbit-accessmanager
-
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-jackrabbit-accessmanager.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-jackrabbit-accessmanager.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-jackrabbit-accessmanager.git
 
 
 

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


[sling-org-apache-sling-scripting-sightly] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-sightly.git


The following commit(s) were added to refs/heads/master by this push:
 new e7f4707  SLING-7162 - Update SCM information in all POM files to 
reference Git
e7f4707 is described below

commit e7f47078012adf007614bde9a4e96d934fc366e2
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5c94e51..553b79f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,9 +44,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/sightly/engine
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/sightly/engine
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/sightly/engine
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly.git
 
 
 

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


[sling-org-apache-sling-installer-factory-configuration] branch master updated (5154e18 -> e246d8f)

2017-10-20 Thread rombert
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-installer-factory-configuration.git.


from 5154e18  SLING-7167 Adjust READMEs
 new 4e96cb6  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new e246d8f  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-launchpad-api] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-launchpad-api.git


The following commit(s) were added to refs/heads/master by this push:
 new 2fc1198  SLING-7162 - Update SCM information in all POM files to 
reference Git
2fc1198 is described below

commit 2fc11981b16335bc1ee54659cce0c227a4854793
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2016610..f2c9102 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,9 +30,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/launchpad/api
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/launchpad/api
-http://svn.apache.org/viewvc/sling/trunk/launchpad/api
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-api.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-api.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-launchpad-api.git
 
 
 

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


[sling-org-apache-sling-installer-hc] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-hc.git


The following commit(s) were added to refs/heads/master by this push:
 new 054b425  SLING-7162 - Update SCM information in all POM files to 
reference Git
054b425 is described below

commit 054b42527aac43f6627f81a3eae71f75aba46ad5
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index d5359c8..9a31417 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,9 +29,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/hc
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/hc
-http://svn.apache.org/viewvc/sling/trunk/installer/hc
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-hc.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-hc.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-hc.git
 
 
 

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


[sling-org-apache-sling-scripting-xproc] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-xproc.git


The following commit(s) were added to refs/heads/master by this push:
 new 550b106  SLING-7162 - Update SCM information in all POM files to 
reference Git
550b106 is described below

commit 550b106f62fed64a604b9e818b506fb892f38bb9
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index ce8c357..58679d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/scripting/xproc
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/scripting/xproc
-
http://svn.apache.org/viewvc/sling/trunk/contrib/scripting/xproc
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-xproc.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-xproc.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-xproc.git
 
 
 

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


[sling-org-apache-sling-fragment-xml] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-fragment-xml.git


The following commit(s) were added to refs/heads/master by this push:
 new 982b467  SLING-7162 - Update SCM information in all POM files to 
reference Git
982b467 is described below

commit 982b4674fcb2c7037c411ba234120d6cc7babf62
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 21a7389..d688dfe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,9 +42,9 @@
 regular API packages as bundles.
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/framework-extension-xml
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/framework-extension-xml
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/framework-extension-xml
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-fragment-xml.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-fragment-xml.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-fragment-xml.git
 
 
 

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


[sling-org-apache-sling-junit-core] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-junit-core.git

commit 5b68371b6b151b797929c3e8cdc25b0a6b6b559a
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:28:13 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9dc1bd7..289fbc0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,8 +42,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-core.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/junit/core
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-junit-core.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-core.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-junit-core.git
 
 
 

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


[sling-org-apache-sling-jcr-contentloader] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-contentloader.git


The following commit(s) were added to refs/heads/master by this push:
 new 9e8d239  SLING-7162 - Update SCM information in all POM files to 
reference Git
9e8d239 is described below

commit 9e8d239baddbcefa54c3e19e89e14609f5ac238f
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 738121a..8a8501c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,9 +47,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/contentloader
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/contentloader
-
http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/contentloader
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-contentloader.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-contentloader.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-contentloader.git
 
 
 

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


[sling-org-apache-sling-scripting-sightly-testing-content] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-sightly-testing-content.git


The following commit(s) were added to refs/heads/master by this push:
 new 61ab913  SLING-7162 - Update SCM information in all POM files to 
reference Git
61ab913 is described below

commit 61ab913af1fd664c261798d65598c9b5008a97cc
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9ade6bf..5fee3fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,9 +45,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/sightly/testing-content
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/sightly/testing-content
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/sightly/testing-content
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing-content.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing-content.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly-testing-content.git
 
 
 

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


[sling-org-apache-sling-launchpad-test-fragment] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-launchpad-test-fragment.git


The following commit(s) were added to refs/heads/master by this push:
 new 9f62d48  SLING-7162 - Update SCM information in all POM files to 
reference Git
9f62d48 is described below

commit 9f62d48b4c6c251ef578113431cddd9ec8df1fbf
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index ea41e39..6a50104 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/launchpad/test-fragment
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/launchpad/test-fragment
-
http://svn.apache.org/viewvc/sling/trunk/launchpad/test-fragment
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-test-fragment.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-test-fragment.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-launchpad-test-fragment.git
 
 
 

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


[sling-org-apache-sling-validation-core] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-validation-core.git

commit 7b851e98c7217178eacfd426614fcb604939862e
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1970c45..557d977 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/core
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-validation-core.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/core
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/validation/core
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-validation-core.git.git
 
 
 Apache Sling Validation Framework Core Implementation

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


[sling-org-apache-sling-fragment-ws] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-fragment-ws.git


The following commit(s) were added to refs/heads/master by this push:
 new e281ba6  SLING-7162 - Update SCM information in all POM files to 
reference Git
e281ba6 is described below

commit e281ba677d584b2116bb3709209e5292986d9b36
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 71e103c..2579faf 100755
--- a/pom.xml
+++ b/pom.xml
@@ -43,9 +43,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/framework-extension-ws
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/framework-extension-ws
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/framework-extension-ws
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-fragment-ws.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-fragment-ws.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-fragment-ws.git
 
 
 

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


[sling-org-apache-sling-tenant] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-tenant.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d3e86e  SLING-7162 - Update SCM information in all POM files to 
reference Git
8d3e86e is described below

commit 8d3e86eab301f1f0199e835f785dabcbc93b1448
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:26:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6ba52fe..c090765 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,15 +36,9 @@
 
 
 
-
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/tenant
-
-
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/tenant
-
-
-http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/tenant
-
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tenant.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tenant.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-tenant.git
 
 
 

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


[sling-org-apache-sling-hc-webconsole] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-hc-webconsole.git


The following commit(s) were added to refs/heads/master by this push:
 new 1324cac  SLING-7162 - Update SCM information in all POM files to 
reference Git
1324cac is described below

commit 1324cac6b65fd992c1db76e7e36bd699c311e1fa
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2fd38a0..ce7031b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/webconsole
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/webconsole
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/healthcheck/webconsole
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-webconsole.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-webconsole.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-hc-webconsole.git
 
 
 

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


[sling-org-apache-sling-testing-resourceresolver-mock] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-resourceresolver-mock.git


The following commit(s) were added to refs/heads/master by this push:
 new 6c7762a  SLING-7162 - Update SCM information in all POM files to 
reference Git
6c7762a is described below

commit 6c7762af328154ccb950e1d66f699414b1238667
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index a271762..62d5dc1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/mocks/resourceresolver-mock
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/resourceresolver-mock
-
http://svn.apache.org/viewvc/sling/trunk/testing/mocks/resourceresolver-mock
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-resourceresolver-mock.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-resourceresolver-mock.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-resourceresolver-mock.git
 
 
 

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


[sling-org-apache-sling-launchpad-test-services] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-launchpad-test-services.git


The following commit(s) were added to refs/heads/master by this push:
 new 515103f  SLING-7162 - Update SCM information in all POM files to 
reference Git
515103f is described below

commit 515103fabe59e180fc929c96ce677c7a490c8e50
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 136daa9..6ac8507 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/launchpad/test-services
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/launchpad/test-services
-
http://svn.apache.org/viewvc/sling/trunk/launchpad/test-services
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-test-services.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-test-services.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-launchpad-test-services.git
 
 
 

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


[sling-org-apache-sling-scripting-jsp-jstl] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-jsp-jstl.git


The following commit(s) were added to refs/heads/master by this push:
 new 563d38a  SLING-7162 - Update SCM information in all POM files to 
reference Git
563d38a is described below

commit 563d38a702f0f140b55bcf6e5b0cb97aa8e5fbe3
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index e94cb83..259bcdc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-jstl
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-jstl
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp-jstl
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-jstl.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-jstl.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-jsp-jstl.git
 
 
 

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


[sling-org-apache-sling-junit-scriptable] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-junit-scriptable.git

commit e13e3886a9e072413fe91d6eeb1b18bde79c4927
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index bf53f28..ba2c4c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,9 +38,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/junit/scriptable
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-scriptable.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/junit/scriptable
-
http://svn.apache.org/viewvc/sling/trunk/testing/junit/scriptable
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-junit-scriptable.git.git
 
 
 

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


[sling-org-apache-sling-testing-clients] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-clients.git

commit b239aad85cb7c9324fd1f9a92b1be00484c9773e
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2b3dc8d..8a39bb5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 Sling testing http clients and utils
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/http/clients
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-clients.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/http/clients
-
http://svn.apache.org/viewvc/sling/trunk/testing/http/clients
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-clients.git.git
 
 
 

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


[sling-org-apache-sling-scripting-el-api] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-el-api.git


The following commit(s) were added to refs/heads/master by this push:
 new 8473b2c  SLING-7162 - Update SCM information in all POM files to 
reference Git
8473b2c is described below

commit 8473b2c77470648b3910c7dbfb38a90985fd205f
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index bbd17c0..a909c1f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
   This bundle wraps the Apache Tomcat 6.0.14 EL API used by 
Apache Sling Scripting JSP.
 
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/el-api
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-el-api.git
   
 
   

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


[sling-org-apache-sling-provisioning-model] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-provisioning-model.git


The following commit(s) were added to refs/heads/master by this push:
 new 30057f1  SLING-7162 - Update SCM information in all POM files to 
reference Git
30057f1 is described below

commit 30057f18af2f95598a8c801e426d0269e3d4f726
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index b6a0d96..bad0034 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,9 +31,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/support/provisioning-model
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/support/provisioning-model
-
http://svn.apache.org/viewvc/sling/trunk/tooling/support/provisioning-model
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-provisioning-model.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-provisioning-model.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-provisioning-model.git
 
 
 

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


[sling-org-apache-sling-startupfilter] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-startupfilter.git


The following commit(s) were added to refs/heads/master by this push:
 new dfc758d  SLING-7162 - Update SCM information in all POM files to 
reference Git
dfc758d is described below

commit dfc758dfe129e67f97e0a10c497ee351c82c7a6c
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 00b18c8..7615efc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/startup-filter
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/startup-filter
-
http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/startup-filter
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-startupfilter.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-startupfilter.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-startupfilter.git
 
 
 

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


[sling-org-apache-sling-validation-examples] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-validation-examples.git

commit 9397d3411144881359dee79ad6e26abb1fe2cd34
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:21:33 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index f32b937..c5e2e28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,8 +35,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-validation-examples.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/examples
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-validation-examples.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-validation-examples.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-validation-examples.git
 
 
 

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


[sling-org-apache-sling-nosql-couchbase-client] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-couchbase-client.git


The following commit(s) were added to refs/heads/master by this push:
 new ee3881c  SLING-7162 - Update SCM information in all POM files to 
reference Git
ee3881c is described below

commit ee3881ca607711574e4c09fabde92f91f75167ec
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0281d76..086e847 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 Couchbase client provider using Couchbase SDK 2.
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/nosql/couchbase-client
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/nosql/couchbase-client
-
http://svn.apache.org/viewvc/sling/trunk/contrib/nosql/couchbase-client
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-couchbase-client.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-nosql-couchbase-client.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-nosql-couchbase-client.git
 
 
 

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


[sling-org-apache-sling-installer-it] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-it.git


The following commit(s) were added to refs/heads/master by this push:
 new 6cb1952  SLING-7162 - Update SCM information in all POM files to 
reference Git
6cb1952 is described below

commit 6cb1952daa1060249d68112ee4330e70cc917a56
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7587132..3022659 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,9 +49,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/it
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/it
-http://svn.apache.org/viewvc/sling/installer/it
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-it.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-it.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-it.git
 
 
 

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


[sling-org-apache-sling-resourceaccesssecurity-it] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-resourceaccesssecurity-it.git

commit 90362568ac00afff00e3dd79a15162b7befff8b7
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:23:58 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0b4b520..a141446 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,8 +90,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resourceaccesssecurity-it.git
- 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/samples/integration-tests
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-resourceaccesssecurity-it.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resourceaccesssecurity-it.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-resourceaccesssecurity-it.git
 
 
 

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


[sling-org-apache-sling-testing-serversetup] branch master updated (2efb3ea -> e74a231)

2017-10-20 Thread rombert
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-testing-serversetup.git.


from 2efb3ea  SLING-7167 Adjust READMEs
 new 4bdff6e  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new e74a231  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-testing-email] branch master updated (a8dc9e1 -> 818aa2c)

2017-10-20 Thread rombert
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-testing-email.git.


from a8dc9e1  SLING-7167 Adjust READMEs
 new 35688dd  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 818aa2c  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-security] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-security.git


The following commit(s) were added to refs/heads/master by this push:
 new 297f7a0  SLING-7162 - Update SCM information in all POM files to 
reference Git
297f7a0 is described below

commit 297f7a084dbc568283965e55ec1f688081556f89
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1ec7f2b..b63dbc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/security
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/security
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/security
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-security.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-security.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-security.git
 
 
 

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


[sling-org-apache-sling-scripting-api] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-api.git

commit b3205874b0c8cd898662761b06f92a6d4d8ad3ec
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6fb06d3..6f63825 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,10 +36,10 @@
 This bundle provides the internal API to implement 
scripting.
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/api
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-api.git
 
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/api
 
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/api
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-api.git.git
 
 
 

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


[sling-org-apache-sling-installer-provider-jcr] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-provider-jcr.git

commit 8419240eba0f7ddfc35a867adcc80ea3b695e9da
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index a9562e2..9fb4e71 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,9 +43,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/providers/jcr
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-provider-jcr.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/providers/jcr
-
http://svn.apache.org/viewvc/sling/trunk/installer/providers/jcr/
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-provider-jcr.git.git
 
 
 

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


[sling-org-apache-sling-testing-serversetup] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-serversetup.git

commit 4bdff6efbb89a85aab291cddc85e5a128e72d75a
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index e6f995b..4a12835 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/serversetup
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-serversetup.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/serversetup
-http://svn.apache.org/viewvc/sling/trunk/testing/serversetup
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-serversetup.git.git
 
 
 

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


[sling-org-apache-sling-jobs] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jobs.git


The following commit(s) were added to refs/heads/master by this push:
 new 8b44be6  SLING-7162 - Update SCM information in all POM files to 
reference Git
8b44be6 is described below

commit 8b44be6ac0635f2093cd1944afb1cffd3afdb673
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 95e22c9..7b7694d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/commons/mom/jobs/core
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/commons/mom/jobs/core
-
http://svn.apache.org/viewvc/sling/trunk/contrib/commons/mom/jobs/core
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jobs.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jobs.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jobs.git
 
 
 

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


[sling-org-apache-sling-query] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-query.git


The following commit(s) were added to refs/heads/master by this push:
 new 60e1539  SLING-7162 - Update SCM information in all POM files to 
reference Git
60e1539 is described below

commit 60e15391d461aa04412bc7218e843fedbbc03ccd
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9d70aa8..95a9494 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 jQuery-inspired repository traversal tool for 
Sling
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/sling-query
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/sling-query
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/sling-query
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-query.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-query.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-query.git
 
 
 

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


[sling-org-apache-sling-testing-sling-mock] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-sling-mock.git


The following commit(s) were added to refs/heads/master by this push:
 new f6c91b1  SLING-7162 - Update SCM information in all POM files to 
reference Git
f6c91b1 is described below

commit f6c91b19bb28bd263817396face1f3c85f3b8528
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 31cbf65..de196ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 Mock implementation of selected Sling APIs.
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/mocks/sling-mock
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/sling-mock
-
http://svn.apache.org/viewvc/sling/trunk/testing/mocks/sling-mock
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-sling-mock.git
 
 
 

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


[sling-org-apache-sling-junit-core] branch master updated (52cd775 -> 5b68371)

2017-10-20 Thread rombert
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-junit-core.git.


from 52cd775  SLING-7167 Adjust READMEs
 new 18e76a3  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 5b68371  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-jcr-registration] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-registration.git


The following commit(s) were added to refs/heads/master by this push:
 new e68fbb6  SLING-7162 - Update SCM information in all POM files to 
reference Git
e68fbb6 is described below

commit e68fbb6aca25df2e31dd39cc75e3abd123b590c9
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0611f15..baee298 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,9 +36,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/registration
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/registration
-
http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/registration
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-registration.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-registration.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-registration.git
 
 
 

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


[sling-org-apache-sling-installer-factory-subsystems] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-subsystems.git

commit 32aadd04799d8792b6a92315b116300ba9e467bf
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index d18ca80..80323f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/factories/subsystems
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-subsystems.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/subsystems
-
http://svn.apache.org/viewvc/sling/trunk/installer/factories/subsystems/
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-subsystems.git.git
 
 
 

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


[sling-org-apache-sling-resourceaccesssecurity-it] branch master updated (c510d3a -> 9036256)

2017-10-20 Thread rombert
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-resourceaccesssecurity-it.git.


from c510d3a  SLING-7167 Adjust READMEs
 new 5d2486d  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 9036256  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-models-validation-impl] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-models-validation-impl.git

commit e308519494fd7a23b50e1512e2331d1deb674fa7
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index dfe5852..7c914ee 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,9 +44,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/models/validation-impl
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-models-validation-impl.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/models/validation-impl
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/models/validation-impl
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-models-validation-impl.git.git
 
 
 

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


[sling-samples] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-samples.git


The following commit(s) were added to refs/heads/master by this push:
 new 31a77fb  SLING-7162 - Update SCM information in all POM files to 
reference Git
31a77fb is described below

commit 31a77fb489848fff0d84af0e1622eb62152127cb
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:18 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 custom-login-form/pom.xml  |  6 +++---
 espblog/pom.xml|  6 +++---
 javashell/pom.xml  |  6 +++---
 path-based-rtp/pom.xml |  6 +++---
 pom.xml| 10 +++---
 slingshot/pom.xml  |  6 +++---
 testing/bundle-with-it/pom.xml |  4 ++--
 testing/module-with-it/pom.xml |  4 ++--
 8 files changed, 22 insertions(+), 26 deletions(-)

diff --git a/custom-login-form/pom.xml b/custom-login-form/pom.xml
index 533d71f..352c6e8 100644
--- a/custom-login-form/pom.xml
+++ b/custom-login-form/pom.xml
@@ -39,9 +39,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/samples/custom-login-form
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/samples/custom-login-form
-
http://svn.apache.org/viewvc/sling/trunk/samples/custom-login-form
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+https://gitbox.apache.org/repos/asf?p=sling-samples.git
 
 
 
diff --git a/espblog/pom.xml b/espblog/pom.xml
index 9aa00c2..7199523 100644
--- a/espblog/pom.xml
+++ b/espblog/pom.xml
@@ -26,9 +26,9 @@
   
   
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/samples/espblog
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/samples/espblog
-http://svn.apache.org/viewvc/sling/trunk/samples/espblog
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+https://gitbox.apache.org/repos/asf?p=sling-samples.git
   
   
   
diff --git a/javashell/pom.xml b/javashell/pom.xml
index 65a1adb..1ce1ca3 100644
--- a/javashell/pom.xml
+++ b/javashell/pom.xml
@@ -39,9 +39,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/samples/javashell
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/samples/javashell
-http://svn.apache.org/viewvc/sling/trunk/samples/javashell
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+https://gitbox.apache.org/repos/asf?p=sling-samples.git
 
 
 
diff --git a/path-based-rtp/pom.xml b/path-based-rtp/pom.xml
index e3d3254..78ceda4 100644
--- a/path-based-rtp/pom.xml
+++ b/path-based-rtp/pom.xml
@@ -38,9 +38,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/samples/path-based-rtp
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/samples/path-based-rtp
-
http://svn.apache.org/viewvc/sling/trunk/samples/path-based-rtp
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+https://gitbox.apache.org/repos/asf?p=sling-samples.git
 
 
 
diff --git a/pom.xml b/pom.xml
index 23694af..418618e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,13 +50,9 @@
 
 
 
-
-scm:svn:http://svn.apache.org/repos/asf/sling/trunk/samples
-
-
-scm:svn:https://svn.apache.org/repos/asf/sling/trunk/samples
-
-http://svn.apache.org/viewvc/sling/trunk/samples
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+https://gitbox.apache.org/repos/asf?p=sling-samples.git
 
 
 
diff --git a/slingshot/pom.xml b/slingshot/pom.xml
index cdb2382..4eac955 100644
--- a/slingshot/pom.xml
+++ b/slingshot/pom.xml
@@ -40,9 +40,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/samples/slingshot
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/samples/slingshot
-http://svn.apache.org/viewvc/sling/trunk/samples/slingshot
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-samples.git
+https://gitbox.apache.org/repos/asf?p=sling-samples.git
 
 
 
diff --git a/testing/bundle-with-it/pom.xml b/testing/bundle-with-it/pom.xml
index c1c31bf..c424f30 100644
--- a/testing/bundle-with-it/pom.xml
+++ b/testing/bundle-with-it/pom.xml
@@ -76,9 +76,9 @@
 
 
 
-

[sling-org-apache-sling-resourcemerger] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-resourcemerger.git


The following commit(s) were added to refs/heads/master by this push:
 new 8808227  SLING-7162 - Update SCM information in all POM files to 
reference Git
8808227 is described below

commit 88082279cce305790e160f521922638e842d9a11
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5d384d9..5f6e543 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/resourcemerger
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/resourcemerger
-
http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/resourcemerger
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resourcemerger.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resourcemerger.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-resourcemerger.git
 
 
 

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


[sling-org-apache-sling-validation-test-services] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-validation-test-services.git

commit 3f1394022b3a0a4aaf36a005ac22236824902c6d
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8f37260..6ee58c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,9 +33,9 @@
 Apache Sling Validation Framework Testing Services
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/test-services
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-validation-test-services.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/test-services
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/validation/test-services
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-validation-test-services.git.git
 
 
 

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


[sling-org-apache-sling-startupfilter-disabler] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-startupfilter-disabler.git


The following commit(s) were added to refs/heads/master by this push:
 new d3d4119  SLING-7162 - Update SCM information in all POM files to 
reference Git
d3d4119 is described below

commit d3d41197577a30f97d37d855638692baf34f3489
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index d3c36cb..7d4dace 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/startup-filter-disabler
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/startup-filter-disabler
-
http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/startup-filter-disabler
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-startupfilter-disabler.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-startupfilter-disabler.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-startupfilter-disabler.git
 
 
 

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


[sling-org-apache-sling-installer-factory-subsystems-base] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-installer-factory-subsystems-base.git

commit fe1cd3362ff8b1d3349df42a6614dccf29a67106
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 49eec8f..bb57683 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,9 +39,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/installer/factories/subsystems-base
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-subsystems-base.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/installer/factories/subsystems-base
-
http://svn.apache.org/viewvc/sling/trunk/installer/factories/subsystems-base/
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-subsystems-base.git.git
 
 
 

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


[sling-org-apache-sling-scripting-core] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-core.git


The following commit(s) were added to refs/heads/master by this push:
 new ce181b5  SLING-7162 - Update SCM information in all POM files to 
reference Git
ce181b5 is described below

commit ce181b5efc4bc916714a04f28f8d3c3504ee484a
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index e35f836..50b17f2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/core
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/core
-
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/core
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-core.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-core.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-core.git
 
 
 

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


[sling-org-apache-sling-serviceusermapper] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-serviceusermapper.git


The following commit(s) were added to refs/heads/master by this push:
 new e38501d  SLING-7162 - Update SCM information in all POM files to 
reference Git
e38501d is described below

commit e38501d3f7925b78e1ea2cb667575071ccc4bbf9
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8fc4953..3a93244 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,9 +40,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/serviceusermapper
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/serviceusermapper
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/serviceusermapper
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-serviceusermapper.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-serviceusermapper.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-serviceusermapper.git
 
 
 

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


[sling-org-apache-sling-testing-rules] branch master updated (a0d09d2 -> dcb3809)

2017-10-20 Thread rombert
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-testing-rules.git.


from a0d09d2  SLING-7167 Adjust READMEs
 new 6111d3e  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new dcb3809  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-repoinit-parser] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-repoinit-parser.git


The following commit(s) were added to refs/heads/master by this push:
 new fd98d9c  SLING-7162 - Update SCM information in all POM files to 
reference Git
fd98d9c is described below

commit fd98d9c02ee9527cc6624f5e63c4c828cc63e0a0
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 83ee528..469dda1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,9 +34,9 @@
   Parser for the Repository Initialization language used in 
Sling
 
   
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/repoinit/parser
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/repoinit/parser
-
https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/repoinit/parser
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-repoinit-parser.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-repoinit-parser.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-repoinit-parser.git
   
   
   

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


[sling-org-apache-sling-tooling-support-source] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-tooling-support-source.git


The following commit(s) were added to refs/heads/master by this push:
 new 89c67a3  SLING-7162 - Update SCM information in all POM files to 
reference Git
89c67a3 is described below

commit 89c67a355ddd12e925b8a92e918187c4ba9b9532
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 972f6d0..2ad4780 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,9 +33,9 @@
 Apache Sling Tooling Support Source
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/support/source
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/support/source
-
http://svn.apache.org/viewvc/sling/trunk/tooling/support/source
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tooling-support-source.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tooling-support-source.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-tooling-support-source.git
 
 
 

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


[sling-org-apache-sling-validation-core] branch master updated (554d5a0 -> 6b0e9a5)

2017-10-20 Thread rombert
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-validation-core.git.


from 554d5a0  SLING-7167 Adjust READMEs
 new 7b851e9  SLING-7162 - Update SCM information in all POM files to 
reference Git
 new 6b0e9a5  SLING-7162 - Update SCM information in all POM files to 
reference Git

The 2 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.


Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[sling-org-apache-sling-validation-api] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-validation-api.git

commit e5e89fce0fc995c78366fc35367998878f2f3851
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 38100af..28f7dcf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,9 +38,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/api
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-validation-api.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/validation/api
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/validation/api
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-validation-api.git.git
 
 
 

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


[sling-org-apache-sling-jcr-jackrabbit-base] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-jcr-jackrabbit-base.git


The following commit(s) were added to refs/heads/master by this push:
 new ab336a4  SLING-7162 - Update SCM information in all POM files to 
reference Git
ab336a4 is described below

commit ab336a43243ec070a821aff563ea4593be4ee653
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index f9244f3..baf8d44 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jackrabbit-base
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jackrabbit-base
-
http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/jackrabbit-base
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-jackrabbit-base.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-jackrabbit-base.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-jcr-jackrabbit-base.git
 
 
 

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


[sling-org-apache-sling-launchpad-content] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-launchpad-content.git


The following commit(s) were added to refs/heads/master by this push:
 new 0c99574  SLING-7162 - Update SCM information in all POM files to 
reference Git
0c99574 is described below

commit 0c99574c020fce77ec0fa8641173405fb577948c
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index a370696..1e7f7fa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,9 +38,9 @@
   
 
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/launchpad/content
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/launchpad/content
-http://svn.apache.org/viewvc/sling/trunk/launchpad/content
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-content.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-content.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-launchpad-content.git
   
 
   

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


[sling-org-apache-sling-karaf-configs] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-karaf-configs.git


The following commit(s) were added to refs/heads/master by this push:
 new 95b6908  SLING-7162 - Update SCM information in all POM files to 
reference Git
95b6908 is described below

commit 95b6908396f4c226b4d31d798aacb83ef4689d9d
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index b290bc2..e9301e9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
   Apache Sling configurations for provisioning with Apache 
Karaf
 
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/karaf/org.apache.sling.karaf-configs
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/karaf/org.apache.sling.karaf-configs
-
http://svn.apache.org/viewvc/sling/trunk/karaf/org.apache.sling.karaf-configs
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-configs.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-configs.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-karaf-configs.git
   
 
   

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


[sling-org-apache-sling-scripting-api] 02/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-scripting-api.git

commit 2b8cd37c2ff8c1d90e43e057e3342a1cde9f76d5
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:23:58 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6f63825..018dc87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,9 +37,8 @@
 
 
 
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-api.git
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/api
-
-
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-api.git.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-api.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-api.git
 
 
 

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


[sling-org-apache-sling-hc-core] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-hc-core.git


The following commit(s) were added to refs/heads/master by this push:
 new adefa19  SLING-7162 - Update SCM information in all POM files to 
reference Git
adefa19 is described below

commit adefa199020bd3a40e051294c904fa37f63fff7e
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:14 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0c5a8bd..a6f275b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,9 +52,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/core
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/healthcheck/core
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/healthcheck/core
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-core.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-core.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-hc-core.git
 
 
 

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


[sling-org-apache-sling-resource-presence] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-resource-presence.git


The following commit(s) were added to refs/heads/master by this push:
 new 047e164  SLING-7162 - Update SCM information in all POM files to 
reference Git
047e164 is described below

commit 047e16488a89c43e40eddff35b013f58c800bcc0
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:16 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index c4b6eb8..a7675a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,9 +43,9 @@
   
 
   
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/org.apache.sling.resource.presence
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/org.apache.sling.resource.presence
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/org.apache.sling.resource.presence
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-presence.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-presence.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-resource-presence.git
   
 
   

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


[sling-org-apache-sling-testing-osgi-mock] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-osgi-mock.git


The following commit(s) were added to refs/heads/master by this push:
 new bd069e8  SLING-7162 - Update SCM information in all POM files to 
reference Git
bd069e8 is described below

commit bd069e81b1151ed266c2a69eb05f2c9ed46a4b8f
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index ca8254d..5c58ae9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 Mock implementation of selected OSGi APIs.
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/mocks/osgi-mock
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/osgi-mock
-
http://svn.apache.org/viewvc/sling/trunk/testing/mocks/osgi-mock
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-osgi-mock.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-osgi-mock.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-osgi-mock.git
 
 
 

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


[sling-org-apache-sling-performance] 05/06: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-performance.git

commit 9293e72bdff2b67bc97e0a7fc8a35c8da6a8b95e
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:18:29 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 jcr-resource-2.2.10/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/jcr-resource-2.2.10/pom.xml b/jcr-resource-2.2.10/pom.xml
index f77998d..f07bcbd 100644
--- a/jcr-resource-2.2.10/pom.xml
+++ b/jcr-resource-2.2.10/pom.xml
@@ -26,9 +26,9 @@
 Apache Sling Performance Test - JCR Resource 2.2.10
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/performance/jcr-resource-2.2.10
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/performance/jcr-resource-2.2.10
-
http://svn.apache.org/viewvc/sling/trunk/performance/jcr-resource-2.2.10
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-performance.git.git
 
 
 

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


[sling-org-apache-sling-servlet-helpers] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-servlet-helpers.git


The following commit(s) were added to refs/heads/master by this push:
 new a842328  SLING-7162 - Update SCM information in all POM files to 
reference Git
a842328 is described below

commit a842328bef5f40a7e58e18d9da66da0b00c31911
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:21:33 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6c1f056..4d37cf7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,15 +35,9 @@
 Mock implementations of SlingHttpServletRequest, 
SlingHttpServletResponse and related classes.
 
 
-
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/servlet-helpers
-
-
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/servlet-helpers
-
-
-
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/servlet-helpers
-
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-servlet-helpers.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-servlet-helpers.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-servlet-helpers.git
 
 
 

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


[sling-org-apache-sling-junit-healthcheck] 01/02: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-junit-healthcheck.git

commit 4e1b37f69f173921760e677169f2382cca6fb13d
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:15 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3572903..a693de6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,9 @@
 Sling Health Check services that run JUnit tests
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/junit/healthcheck
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-healthcheck.git
  
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/junit/healthcheck
-
http://svn.apache.org/viewvc/sling/trunk/testing/junit/healthcheck
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-junit-healthcheck.git.git
 
 
 

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


[sling-org-apache-sling-testing-caconfig-mock-plugin] branch master updated: SLING-7162 - Update SCM information in all POM files to reference Git

2017-10-20 Thread rombert
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-testing-caconfig-mock-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new c642800  SLING-7162 - Update SCM information in all POM files to 
reference Git
c642800 is described below

commit c642800ea94f030e64549ecb347502ab8a2d2dd7
Author: Robert Munteanu 
AuthorDate: Fri Oct 20 19:13:17 2017 +0200

SLING-7162 - Update SCM information in all POM files to reference Git
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 008a51b..572be13 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,9 +34,9 @@
 Mock Context Plugin for Apache Sling Context-Aware 
Configuration
 
 
-
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/testing/mocks/caconfig-mock-plugin
-
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/caconfig-mock-plugin
-
http://svn.apache.org/viewvc/sling/trunk/testing/mocks/caconfig-mock-plugin
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-caconfig-mock-plugin.git
+
scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-caconfig-mock-plugin.git
+
https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-caconfig-mock-plugin.git
 
 
 

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


  1   2   3   4   5   6   7   8   9   >