This is an automated email from the ASF dual-hosted git repository. cschneider pushed a commit to branch SLING-9447 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-api.git
commit df3f41c0d7d865d6ac9621f55e3d17cc3980ca12 Author: Christian Schneider <[email protected]> AuthorDate: Wed May 13 15:15:09 2020 +0200 SLING-9447 - Add packageId property --- .../apache/sling/distribution/event/DistributionEventProperties.java | 5 +++++ src/main/java/org/apache/sling/distribution/event/package-info.java | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/distribution/event/DistributionEventProperties.java b/src/main/java/org/apache/sling/distribution/event/DistributionEventProperties.java index a70f9b2..f19337d 100644 --- a/src/main/java/org/apache/sling/distribution/event/DistributionEventProperties.java +++ b/src/main/java/org/apache/sling/distribution/event/DistributionEventProperties.java @@ -47,4 +47,9 @@ public interface DistributionEventProperties { * property containing the type of the distribution paths */ String DISTRIBUTION_PATHS= "distribution.paths"; + + /** + * Package id + */ + String PACKAGE_ID = "distribution.package.id"; } diff --git a/src/main/java/org/apache/sling/distribution/event/package-info.java b/src/main/java/org/apache/sling/distribution/event/package-info.java index 41d9d59..39da672 100644 --- a/src/main/java/org/apache/sling/distribution/event/package-info.java +++ b/src/main/java/org/apache/sling/distribution/event/package-info.java @@ -17,7 +17,7 @@ * under the License. */ -@Version("0.2.0") +@Version("0.3.0") package org.apache.sling.distribution.event; import aQute.bnd.annotation.Version;
