You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:33:56 UTC

[sling-org-apache-sling-event-dea] annotated tag org.apache.sling.event.dea-1.1.2 created (now d565c86)

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

rombert pushed a change to annotated tag org.apache.sling.event.dea-1.1.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event-dea.git.


      at d565c86  (tag)
 tagging b73c4b0aea5bff63cab59ded22a3c18fb4bbf4d1 (commit)
      by Oliver Lietz
      on Sun Mar 5 07:33:36 2017 +0000

- Log -----------------------------------------------------------------
org.apache.sling.event.dea-1.1.2
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new d715c2e  SLING-3882 : Move the distributed event admin into a separate project
     new 82bf84c  Update svn properties
     new c447797  Update to latest API version
     new e74ac43  Use released SLING API
     new ca962c6  [maven-release-plugin] prepare release org.apache.sling.event.dea-1.0.0
     new 3a9b2a7  [maven-release-plugin] prepare for next development iteration
     new bb155eb  Use latest parent pom
     new 61186e0  SLING-4698 - Set parent.relativePath to empty for all modules
     new 49f716a  SLING-4758 : Make the DEA bundle usable on older Sling installations
     new d137c00  Update to Sling Parent 23
     new b7468c1  Remove superflous sling.java.version=6 as it's the default now
     new 438dd1c  set parent version to 24 and add empty relativePath where missing
     new a0e7910  [maven-release-plugin] prepare release org.apache.sling.event.dea-1.0.2
     new c5622ea  [maven-release-plugin] prepare for next development iteration
     new 8577a82  SLING-5052 : avoid NPE when resource no longer exists
     new 7a94f81  [maven-release-plugin] prepare release org.apache.sling.event.dea-1.0.4
     new 705344f  [maven-release-plugin] prepare for next development iteration
     new dfdd21e  Update the main reactor to parent 25
     new 10ff4b5  Switch to parent pom 26
     new 9fe4fe6  SLING-5996 : DistributedEventSender should move to new ResourceChangeListener API
     new 86c508c  Fix javadoc generation
     new 69c37f8  SLING-5230 : Remove getAdministrativeResourceResolver() usage from org.apache.sling.event.dea
     new b8b3bb5  [maven-release-plugin] prepare release org.apache.sling.event.dea-1.1.0
     new 239feb7  [maven-release-plugin] prepare for next development iteration
     new 5ca1662  Update to parent pom 29
     new 8f2b0d4  SLING-6497 Use ServiceUserMapped to ensure presence of service user mapping
     new f1df0c1  [maven-release-plugin] prepare release org.apache.sling.event.dea-1.1.2
     new b73c4b0  [maven-release-plugin] copy for tag org.apache.sling.event.dea-1.1.2

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


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

[sling-org-apache-sling-event-dea] 03/05: SLING-6497 Use ServiceUserMapped to ensure presence of service user mapping

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

rombert pushed a commit to annotated tag org.apache.sling.event.dea-1.1.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event-dea.git

commit 8f2b0d4e11d941122c3f57d4f1d3dfeb435810a5
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sat Jan 28 08:23:58 2017 +0000

    SLING-6497 Use ServiceUserMapped to ensure presence of service user mapping
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea@1780638 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml                                                             | 6 ++++++
 .../org/apache/sling/event/dea/impl/DistributedEventAdminImpl.java  | 4 ++++
 2 files changed, 10 insertions(+)

diff --git a/pom.xml b/pom.xml
index 88d27e2..dcba8b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,6 +99,12 @@
             <version>2.11.0</version>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.serviceusermapper</artifactId>
+            <version>1.2.0</version>
+            <scope>provided</scope>
+        </dependency>
       <!-- Testing -->
         <dependency>
             <groupId>junit</groupId>
diff --git a/src/main/java/org/apache/sling/event/dea/impl/DistributedEventAdminImpl.java b/src/main/java/org/apache/sling/event/dea/impl/DistributedEventAdminImpl.java
index 27a811c..809b0ba 100644
--- a/src/main/java/org/apache/sling/event/dea/impl/DistributedEventAdminImpl.java
+++ b/src/main/java/org/apache/sling/event/dea/impl/DistributedEventAdminImpl.java
@@ -19,6 +19,7 @@
 package org.apache.sling.event.dea.impl;
 
 import org.apache.sling.api.resource.ResourceResolverFactory;
+import org.apache.sling.serviceusermapping.ServiceUserMapped;
 import org.apache.sling.settings.SlingSettingsService;
 import org.osgi.framework.BundleContext;
 import org.osgi.service.component.annotations.Activate;
@@ -55,6 +56,9 @@ public class DistributedEventAdminImpl {
     @Reference
     private EventAdmin eventAdmin;
 
+    @Reference
+    private ServiceUserMapped serviceUserMapped;
+
     /** Default repository path. */
     public static final String DEFAULT_REPOSITORY_PATH = "/var/eventing/distribution";
 

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

[sling-org-apache-sling-event-dea] 01/05: [maven-release-plugin] prepare for next development iteration

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

rombert pushed a commit to annotated tag org.apache.sling.event.dea-1.1.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event-dea.git

commit 239feb7ff85d521aa1d9ec0889e76b6094099b48
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Wed Oct 12 13:07:39 2016 +0000

    [maven-release-plugin] prepare for next development iteration
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea@1764457 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index f1a65b6..8d05e48 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
 
     <artifactId>org.apache.sling.event.dea</artifactId>
     <packaging>bundle</packaging>
-    <version>1.1.0</version>
+    <version>1.1.1-SNAPSHOT</version>
 
     <name>Apache Sling Distributed Event Admin</name>
     <description>
@@ -37,9 +37,9 @@
     </description>
 
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.event.dea-1.1.0</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.event.dea-1.1.0</developerConnection>
-        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.event.dea-1.1.0</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/dea</url>
     </scm>
 
     <build>

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

[sling-org-apache-sling-event-dea] 05/05: [maven-release-plugin] copy for tag org.apache.sling.event.dea-1.1.2

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

rombert pushed a commit to annotated tag org.apache.sling.event.dea-1.1.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event-dea.git

commit b73c4b0aea5bff63cab59ded22a3c18fb4bbf4d1
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Mar 5 07:33:36 2017 +0000

    [maven-release-plugin] copy for tag org.apache.sling.event.dea-1.1.2
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.event.dea-1.1.2@1785530 13f79535-47bb-0310-9956-ffa450edef68

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

[sling-org-apache-sling-event-dea] 02/05: Update to parent pom 29

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

rombert pushed a commit to annotated tag org.apache.sling.event.dea-1.1.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event-dea.git

commit 5ca166242333e32f54af7a939a96fb7d62df7101
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Mon Oct 31 14:43:30 2016 +0000

    Update to parent pom 29
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea@1767293 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8d05e48..88d27e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.sling</groupId>
         <artifactId>sling</artifactId>
-        <version>28</version>
+        <version>29</version>
         <relativePath />
     </parent>
 

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

[sling-org-apache-sling-event-dea] 04/05: [maven-release-plugin] prepare release org.apache.sling.event.dea-1.1.2

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

rombert pushed a commit to annotated tag org.apache.sling.event.dea-1.1.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event-dea.git

commit f1df0c1d93144e08289f3e90a68436db29528b20
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Mar 5 07:33:22 2017 +0000

    [maven-release-plugin] prepare release org.apache.sling.event.dea-1.1.2
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea@1785529 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index dcba8b9..b93b3b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
 
     <artifactId>org.apache.sling.event.dea</artifactId>
     <packaging>bundle</packaging>
-    <version>1.1.1-SNAPSHOT</version>
+    <version>1.1.2</version>
 
     <name>Apache Sling Distributed Event Admin</name>
     <description>
@@ -37,9 +37,9 @@
     </description>
 
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/dea</developerConnection>
-        <url>http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/dea</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.event.dea-1.1.2</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.event.dea-1.1.2</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.event.dea-1.1.2</url>
     </scm>
 
     <build>

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