This is an automated email from the ASF dual-hosted git repository.
davidb pushed a change to branch features-service
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-launcher.git.
discard 12142b7 Configure WhitelistServiceFactory
discard 734180e Make the launcher capable of configuring additional services
discard e5c116d Make launcher write whitelist enforcer configuration.
discard 15569a3 Configure features service via configadmin
discard 0af3c18 Make the Launcher register the Features service.
add 7a37215 Add a download artifacts only option (-dao <dir>) that allows
to prepopulate a cache
add be1830a SLING-7827 : Remove Application concept from feature model
add 07ea6c0 SLING-7827 : Remove Application concept from feature model
add 13c7d8b Add an option to configure framework version
add fdc440b Make extension processing extensible.
add e253419 Allow to specify several features to be launched.
add 8c2c612 Merge master
add 1672563 Filter feature extensions on dao
add 74cb582 Merge pull request #1 from apache/extensions
add 1c05b1b Update to commons.johnzon 1.1.0
add a546721 Delete pkg.txt
add 8789b48 Change variable handling to not allow variables to be defined
twice
add 3267119 Merge pull request #2 from apache/variables
add 63baa87 Add launcher dir to rat excludes
add 0521ce3 Extensions should only have one type and repoinit is defined
as TEXT (see FeatureConstants)
add eb7c444 SLING-7216 - [nice-to-have] Add a CODE_OF_CONDUCT file to
every module
add 8fe5c86 SLING-7215 - [nice-to-have] Add a CONTRIBUTING file to every
module
add 9c33fca trivial: added license header to *.md files
new 7934b9f Transformation for features service
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (12142b7)
\
N -- N -- N refs/heads/features-service (7934b9f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 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:
.gitignore | 2 +
CODE_OF_CONDUCT.md | 22 ++
CONTRIBUTING.md | 24 ++
pom.xml | 5 +-
.../feature/launcher/impl/FeatureProcessor.java | 254 ++++++++++-----------
.../sling/feature/launcher/impl/Installation.java | 26 ++-
.../feature/launcher/impl/LauncherConfig.java | 61 ++---
.../apache/sling/feature/launcher/impl/Main.java | 212 ++++++++++++-----
.../extensions/handlers/ContentPackageHandler.java | 45 ++++
.../impl/extensions/handlers/RepoInitHandler.java | 47 ++++
.../launcher/impl/launchers/AbstractRunner.java | 46 ++--
.../launcher/impl/launchers/FrameworkLauncher.java | 13 +-
.../launcher/impl/launchers/FrameworkRunner.java | 10 +-
.../sling/feature/launcher/spi/Launcher.java | 5 +-
.../feature/launcher/spi/LauncherRunContext.java | 6 +-
.../ExtensionHandler.java} | 13 +-
.../ExtensionInstallationContext.java} | 31 ++-
...eature.launcher.spi.extensions.ExtensionHandler | 2 +
18 files changed, 521 insertions(+), 303 deletions(-)
create mode 100644 CODE_OF_CONDUCT.md
create mode 100644 CONTRIBUTING.md
create mode 100644
src/main/java/org/apache/sling/feature/launcher/impl/extensions/handlers/ContentPackageHandler.java
create mode 100644
src/main/java/org/apache/sling/feature/launcher/impl/extensions/handlers/RepoInitHandler.java
copy src/main/java/org/apache/sling/feature/launcher/spi/{Launcher.java =>
extensions/ExtensionHandler.java} (68%)
copy
src/main/java/org/apache/sling/feature/launcher/spi/{LauncherPrepareContext.java
=> extensions/ExtensionInstallationContext.java} (50%)
create mode 100644
src/main/resources/META-INF/services/org.apache.sling.feature.launcher.spi.extensions.ExtensionHandler