You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2020/02/21 08:17:42 UTC

[sling-whiteboard] branch master updated (0862818 -> 5dc5be0)

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

cziegeler pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git.


    from 0862818  Renamed Quickstart to Kickstart
     add 5dc5be0  Initial OSGi installer support for features

No new revisions were added by this update.

Summary of changes:
 .../.gitignore                                     |   0
 .../CODE_OF_CONDUCT.md                             |   0
 .../CONTRIBUTING.md                                |   0
 .../Jenkinsfile                                    |   0
 .../LICENSE                                        |   0
 .../README.md                                      |   9 +
 org.apache.sling.installer.factory.feature/pom.xml | 120 +++++++++
 .../model/impl/AbstractFeatureModelTask.java       |  89 +++++++
 .../model/impl/FeatureModelTaskFactory.java        | 109 ++++++++
 .../model/impl/FeatureModelTransformer.java        | 126 +++++++++
 .../model/impl/InstallFeatureModelTask.java        | 290 +++++++++++++++++++++
 .../model/impl/UninstallFeatureModelTask.java      |  67 +++++
 12 files changed, 810 insertions(+)
 copy {upgrade => org.apache.sling.installer.factory.feature}/.gitignore (100%)
 copy {transformer => org.apache.sling.installer.factory.feature}/CODE_OF_CONDUCT.md (100%)
 copy {transformer => org.apache.sling.installer.factory.feature}/CONTRIBUTING.md (100%)
 copy {transformer => org.apache.sling.installer.factory.feature}/Jenkinsfile (100%)
 copy {upgrade => org.apache.sling.installer.factory.feature}/LICENSE (100%)
 create mode 100644 org.apache.sling.installer.factory.feature/README.md
 create mode 100644 org.apache.sling.installer.factory.feature/pom.xml
 create mode 100644 org.apache.sling.installer.factory.feature/src/main/java/org/apache/sling/installer/factory/model/impl/AbstractFeatureModelTask.java
 create mode 100644 org.apache.sling.installer.factory.feature/src/main/java/org/apache/sling/installer/factory/model/impl/FeatureModelTaskFactory.java
 create mode 100644 org.apache.sling.installer.factory.feature/src/main/java/org/apache/sling/installer/factory/model/impl/FeatureModelTransformer.java
 create mode 100644 org.apache.sling.installer.factory.feature/src/main/java/org/apache/sling/installer/factory/model/impl/InstallFeatureModelTask.java
 create mode 100644 org.apache.sling.installer.factory.feature/src/main/java/org/apache/sling/installer/factory/model/impl/UninstallFeatureModelTask.java