This is an automated email from the ASF dual-hosted git repository.
cschneider pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-api.git
The following commit(s) were added to refs/heads/master by this push:
new d460e27 SLING-9447 - Add packageId property (#5)
d460e27 is described below
commit d460e27564809f70f52158c1eb78272ee19cda27
Author: Christian Schneider <[email protected]>
AuthorDate: Wed May 13 15:21:53 2020 +0200
SLING-9447 - Add packageId property (#5)
---
.../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..45b0553 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 DISTRIBUTION_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;