This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature.git
The following commit(s) were added to refs/heads/master by this push:
new 71b0fe4 SLING-9899 : Support strategy FIRST for artifact merging
71b0fe4 is described below
commit 71b0fe433782d307435406ec7e722f8af93535d1
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Thu Nov 12 15:27:23 2020 +0100
SLING-9899 : Support strategy FIRST for artifact merging
---
src/main/java/org/apache/sling/feature/builder/BuilderContext.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/sling/feature/builder/BuilderContext.java
b/src/main/java/org/apache/sling/feature/builder/BuilderContext.java
index 43f1c7d..97444b6 100644
--- a/src/main/java/org/apache/sling/feature/builder/BuilderContext.java
+++ b/src/main/java/org/apache/sling/feature/builder/BuilderContext.java
@@ -63,7 +63,10 @@ public class BuilderContext {
/** Used in override rule to select the last candidate applied. */
public static final String VERSION_OVERRIDE_LATEST = "LATEST";
- /** Used in override rule to select the first candidate applied. */
+ /**
+ * Used in override rule to select the first candidate applied.
+ * @since 1.3.0
+ */
public static final String VERSION_OVERRIDE_FIRST = "FIRST";
/** Used in override rule to match all coordinates */