You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by si...@apache.org on 2019/03/21 16:00:20 UTC

[sling-whiteboard] branch master updated (c78fed0 -> 4ce375d)

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

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


    from c78fed0  [cp2fm] use the AutoCloseable feature
     new c755e2e  [cp2fm] implemented separation of concerns for deploying bundles in order to integrate the converter in existing tools, such as Apache Maven
     new 4ce375d  [cp2fm] enhanced packages documentation

The 684 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:
 .../ContentPackage2FeatureModelConverter.java      | 121 ++++++++-------------
 .../apache/sling/cp2fm/DefaultBundlesDeployer.java |  99 +++++++++++++++++
 .../sling/cp2fm/handlers/BundleEntryHandler.java   |  22 ++--
 .../apache/sling/cp2fm/handlers/package-info.java  |   6 +
 .../{ArtifactWriter.java => BundlesDeployer.java}  |  13 ++-
 .../org/apache/sling/cp2fm/spi/package-info.java   |   4 +
 .../apache/sling/cp2fm/writers/package-info.java   |   4 +
 .../ContentPackage2FeatureModelConverterTest.java  |  11 +-
 .../sling/cp2fm/DefaultBundlesDeployerTest.java    |  80 ++++++++++++++
 .../cp2fm/handlers/BundleEntryHandlerTest.java     |   8 +-
 10 files changed, 271 insertions(+), 97 deletions(-)
 create mode 100644 content-package-2-feature-model/src/main/java/org/apache/sling/cp2fm/DefaultBundlesDeployer.java
 copy content-package-2-feature-model/src/main/java/org/apache/sling/cp2fm/spi/{ArtifactWriter.java => BundlesDeployer.java} (73%)
 create mode 100644 content-package-2-feature-model/src/test/java/org/apache/sling/cp2fm/DefaultBundlesDeployerTest.java