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

svn commit: r34069 [2/2] - /release/sling/

Added: release/sling/org.apache.sling.feature.extension.content-1.0.2.pom
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.2.pom (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.2.pom Thu May 16 14:51:19 2019
@@ -0,0 +1,155 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <artifactId>sling</artifactId>
+    <groupId>org.apache.sling</groupId>
+    <version>34</version>
+    <relativePath>pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>org.apache.sling.feature.extension.content</artifactId>
+  <name>Sling Featuremodel - Content Deployment Exension</name>
+  <version>1.0.2</version>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+  <scm>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-extension-content.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-extension-content.git</developerConnection>
+    <tag>org.apache.sling.feature.extension.content-1.0.2</tag>
+    <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-feature-extension-content.git</url>
+  </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <minimizeJar>true</minimizeJar>
+              <filters>
+                <filter>
+                  <includes>
+                    <include>org.apache.commons:collections:*</include>
+                  </includes>
+                </filter>
+              </filters>
+              <relocations>
+                <relocation>
+                  <pattern>javax.jcr</pattern>
+                  <shadedPattern>shaded.javax.jcr</shadedPattern>
+                  <includes>
+                    <include>javax.jcr.**</include>
+                  </includes>
+                </relocation>
+                <relocation>
+                  <pattern>org.slf4j</pattern>
+                  <shadedPattern>shaded.org.slf4j</shadedPattern>
+                  <includes>
+                    <include>org.slf4j.**</include>
+                  </includes>
+                </relocation>
+                <relocation>
+                  <pattern>org.osgi</pattern>
+                  <shadedPattern>shaded.org.osgi</shadedPattern>
+                  <includes>
+                    <include>org.osgi.util.**</include>
+                  </includes>
+                </relocation>
+                <relocation>
+                  <pattern>org.apache</pattern>
+                  <shadedPattern>shaded.org.apache</shadedPattern>
+                  <excludes>
+                    <exclude>org.apache.sling.feature.**</exclude>
+                  </excludes>
+                </relocation>
+                <relocation>
+                  <pattern>org.UNSHADE.apache</pattern>
+                  <shadedPattern>org.apache</shadedPattern>
+                </relocation>
+              </relocations>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/main/resources/META-INF/services/**</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>osgi.core</artifactId>
+      <version>6.0.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.feature</artifactId>
+      <version>1.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.feature.io</artifactId>
+      <version>1.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.feature.launcher</artifactId>
+      <version>1.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.12</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>hamcrest-core</artifactId>
+          <groupId>org.hamcrest</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>2.23.0</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>byte-buddy</artifactId>
+          <groupId>net.bytebuddy</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>byte-buddy-agent</artifactId>
+          <groupId>net.bytebuddy</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>objenesis</artifactId>
+          <groupId>org.objenesis</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+  <properties>
+    <jdk.version>8</jdk.version>
+    <surefire.plugin.version>3.0.0-M3</surefire.plugin.version>
+  </properties>
+</project>

Added: release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.asc (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZZUAACgkQ3f1PYfJP
+DZ+BhA/7B7blsShXc7U9mnq88cEUUzz6ANzs1OaqHPeTuSzRE82c2HI+0AKIFQjr
+vIGDWUcFcqy+Vlu+5wln9XAOiQKiG6kNO21vSHyQzFurXJKQgStUigHHhmmZL6Zj
+/ZjAa0RwzSr7UXd/rdKzRELLEA8IPoogRaXCrq026UT2vExXlg68nZtnq8njC3Tp
+3UValFWH+iAETOjV/Hpx4JEmOQGz6u9qUSsO7nlbQsH0TXgfsjwxg1XJzHpbby7Y
+G9rd5583DJAG8w/GtpptbcabHkUzwdwGe8jwGojclwoEb9qGTlw37g9T/B8UQzDz
+YeCCYcG2aU0PzMZCNZlpeeS/o19r4Nfzv0REuGL8jv5BBkYXBpfJfEAdj65jDRL5
+5NGceG3oZepx0Ns0oWL8qSUdV3UzJZTl9UV+hk0WzIKm4/+/34QXTws+RshgdTtm
+6p8t7owQaRx7JzKLXklkd0YzFOOMKG51dtrxeYytuIF05eaBIogLZTBeNIalszHp
+M/ou/JYu5P30H6h4ejBJMZ4Q1kjtkgUikvaJ3XefXs7GexKgNijIDHEe+FP6rxRZ
+UX0CXvOCvhHh8XDAr4/7/sndExIV/CVb49iRGK7eYQBD3kiJEKCRAuH7g013LzuZ
+BgeA6IwGQ3ocW+zyyJnSHlKpnXO/3TmyvNAPONRrFS/BTvwCzIo=
+=9fuO
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+f7051c41455ff1cc77eb3cf0dfcfc720
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.2.pom.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+a3f2e607e5538c5f19dc4c99d436f4320f6ff222
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZXzQACgkQ3f1PYfJP
+DZ/b3w/+Ig1hqFtbTqmKxt8vN8SU3s5kZy3JNQmqZGYGq0F8zapfj2Z03y4zfi/j
+thccWkp+TKunLSl4jwscsKN4o2mXGjkSnYjUZO1BBWn+n2P3sbnZ3hcobnb5bHpZ
+5aw2EdKnex2ZEEqlAyxGRn5XYEphaOol5SpDhFwa2G0anEV2bSCTJ5fC6XS8yPdn
+/+UgYoBQEgBcbrf2Pm60izZv0KZPowhBF/gDn+MS3BeG6naf870A2iIGiHtysKQL
+aLDInLYfbhZ3ShXjDRNtAOOiVbEQDPakv+qSbu/azYlDo30EglU0hJO50YWyZiMg
+FTdcQT7mvjKZ/bAnlpceu3FQ3adts4xYB5A0tur7chHJbgYYN95Nc19mG3+xMsF/
+dWibkwjNT6WoMXLU+W/ZFgKilBKSXgvsQwFP2pm/NgyKLRtpRPp+VBxSQG/KXprL
+r4aAlTN6PkbPuTwlwz870/tWS/+1n6iO/m4Kl+vm/IF4ihTCfclwGT583FJZoChN
+4XG9AoHxSJIvKxId8UljO4RCBaI/MSE5CUmU50QdqQm2n9HpiwG+UXBsSFS+nul1
+n8TBc/WmS+ap1QNGs1ae+HMHqwPbJTTXrxNwtyO4SdztXUtjNXiZyJ4r/a8UJOks
+ZSTbaeLXMYEiYk/qP8fwWyYOzNBiUcrga/WzCxjfE094t2nVhvI=
+=auVS
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+49bf493c06070cea5f37491400c63255
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-javadoc.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+7d1c2de41a6b9b24d58fc7f2775f4f50d5819a5c
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZXzMACgkQ3f1PYfJP
+DZ8W7w//WKPL7F5F52kgUHzt/YMDzTd7tle+q82ZFN+ZpKEJ5QJFTUCJjxAiEM4Z
+t2GrNq+GbdW9G0tDgCJAGUe25ZCyZkJRIK4tE8PH+8XjGIzWLrXW9iSNoagRDlnw
+VACaH/BHVMiCsBaURRfCbT5LvYRchKiOkcNd2gFyIaPov0nS4mb5zmjWwg5iqEye
+TYX8MdsnzgU4EQcGDsyfPFdWlOllcMTYwm+cSrOEGb0CJo99979oRYh/W8JWQfIv
+5v5ojrlYiOQsrV6iQfF5Y+pC+vYsI3qOaG6AASbcPb/2FGy32h7pLKSw50mY+e3N
+L6Awt/CBbH2lxlaErCs1yJHO2Q7tm+GubW66JW7KGPeW/rWVUsn1Cpo/+hR2Hahe
+8oPvJnfjaKQMyCcgBxROwkJDn9DVuBa+ETed35Pr5av7JRHrTgT7/CcYYJE3f1Mc
+/mB4UGAHSPZ1xnhh3UxlPt7hUJif/I45AJWmceoHxlJ2JXGXvpzSrQ9Qa5wYssgy
+4fEnhEakCKQsnUeUwdEe+MfjC4xslHdKlnepcJ8FMkR7o+SUJK1X0O308FqefSCQ
+mYy/J3w0jKO3Vk2D2gTwGFMi8rFygcyhx+fGKLmWWXPb/QlLDYyEjJLcBTt+iLAz
+QE7zMcI+4x1CxHHG0XJMjGxw3KMjOWE3yKY9cGS6PkZyC1N8Zbw=
+=VAWC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+bc449237ce2406d55cf336f484498bcf
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-source-release.zip.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+3c730b64b3783737e6b26fc0ca2eb800fa9fea19
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.io-1.0.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.asc (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZXzQACgkQ3f1PYfJP
+DZ/9tw/8Dc+DtXHdQ/E4QK2yfUS0XybefPCdmvcyXQ2hhSMoxwDYKP65GRKUjNsl
+PLr73i4lvBZ8eN5TGLXYewES3JtBueDIt0BarFSOONpU4YQXVxIYNOPz3w3gMv3r
+1aD7Df5gEx1A3TasJMf/tJlL8QFIf2XB+1QRfBZaFdIkOfKMOahzTAawNZ2BDWSO
+39UMm/oMxvX3wIn0XAETWpl1jB1goAjZi+RMvTni1lyK35G9R0NHWePLRfVfFW0p
+sYZaSYwIiMUKXmulIk31x0mBc+CD1h4flzxL6XG/LWgyJYjGIYVNv9RNPVt16U1H
+7DIkoyxBPvHxnzxzHIes9lAginU/zHm0rEFkkVNfzF4N8lJn2WVrTqsNr35Tjt23
+eRQEMKFoF7j1Eg9ok0vCb018uCr3bfKqaFelPUSaAiWRzdb7B5q1fw54au3G4chs
+7kObgMBnmh+vbezdz1oWFLYYS8UZNfcXfRtYyJM/QBMHZJ6XXrrzIkaPm7+zlisF
+q7pEVKVv807YqWlNwXnn0wezQZdllXLH1o7Kx2kQBROPZKrKHH0sJBVer/02YF1z
+tNkMQOYdtOBsBREDdDf1lqm+gk9kBSkull2RScZd5BMUBMiSQIqtxvlwUGyKZaUR
+nCRUzmCpIeRRvwMPPbvwQFx9udNg0PxKiig5NNsoNxT2ASYFezc=
+=u4hB
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+24d4abebe0cb93371b924a665c430087
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2-sources.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+8c29c7cf3d4eba1d2482a8472e0b20741168a809
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.io-1.0.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.io-1.0.2.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.jar.asc (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZXzMACgkQ3f1PYfJP
+DZ/tbhAAr8RYzzjC3TlzoAb7X68Gs5pPXuj8s/QQ7EPALC6mN5N0L7RT1jTz6yUp
+82YQ/WoiqOjwZUYuOrWHv5WRtTJToOooC0ubYNfAFMumWWfwpPSWu8BJNqCaPDTi
+9zYi8Qmo5MoYHofkF1GMIlHhPDsNs3VWRw8oz7TdrDbrLefjjOZAFcIHEfOhGMfZ
+HZLkOYxvgUkVm2WwE0TxUMGPj5cZmfZnfKThSX9fxdOL1MoRZkuxRHHHWq6P9ald
+XR4qJFJcEcKAwIztJUCqAPb0lQs5FpPUkTZjDwsEVyfqZwtAUhczwgcJFThurwTa
+XXuxErQNzID/XwmrB2CO1KSrJwwaYFesUN7ayOsvlAbGqJC2FH0QAO38LmrkdmKx
+/62lCaawquS4NjLHitQD6iCcAriB75RGG5aCiTjVvVMLIn1JlKHULDpCVnjzmUbh
++0KSy8e/Mz1KxWEoPLfKwpkJYwhWGVdNPKnQxuGB9vYbGTlOle9e3fVYc0b2/eX9
+cI8fRHoY2QmSLWICFtiuBbogIeacpRjRDV07kmrUL3Hr4aAKvLTN+zgZLqwWqp8y
+CaSU8Oc7e+JwfYPzirZteJVsrgDw/LKGdrrCjIIJ8CgflHw0v575fPlAGxmr+e4i
+Bb2zE5Y+WPL1y5HAGqptuOoKxNXldS4Ll5WRIHIG0thAv/WYul8=
+=vLpb
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.io-1.0.2.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+709526613f8e75858c337da44e372eb5
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+73a3f0e46fa2eb166c53c9f45f91fab852981320
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2.pom
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.pom (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.pom Thu May 16 14:51:19 2019
@@ -0,0 +1,167 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+    <!--
+        Licensed to the Apache Software Foundation (ASF) under one or more contributor license
+        agreements. See the NOTICE file distributed with this work for additional information
+        regarding copyright ownership. The ASF licenses this file to you under the Apache License,
+        Version 2.0 (the "License"); you may not use this file except in compliance with the
+        License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+        either express or implied. See the License for the specific language governing permissions
+        and limitations under the License.
+    -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>34</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.feature.io</artifactId>
+    <version>1.0.2</version>
+    <packaging>bundle</packaging>
+    
+    <name>Apache Sling Feature IO Module</name>
+    <description>
+        IO functionality for the Feature Model
+    </description>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-io.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-io.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-feature-io.git</url>
+      <tag>org.apache.sling.feature.io-1.0.2</tag>
+  </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Conditional-Package>
+                            org.apache.felix.configurator.impl.json,
+                            org.apache.felix.configurator.impl.model,
+                            org.apache.felix.utils.collections,
+                            org.apache.felix.utils.resource,
+                            org.apache.felix.utils.version
+                        </Conditional-Package>
+                    </instructions>
+                    <!--  Skip baselining for 0.x version -->
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>readme.md</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <!-- Validate the example feature file against the schema -->
+                <artifactId>json-schema-validator</artifactId>
+                <groupId>com.groupon.maven.plugin.json</groupId>
+                <version>1.2.0</version>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>validate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <validations>
+                        <validation>
+                            <directory>${basedir}/design</directory>
+                            <jsonSchema>${basedir}/src/main/resources/META-INF/feature/Feature-1.0.0.schema.json</jsonSchema>
+                            <includes>
+                                <include>**/*.json</include>
+                            </includes>
+                        </validation>
+                    </validations>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.converter</artifactId>
+            <version>1.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configurator</artifactId>
+            <version>1.0.4</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.utils</artifactId>
+            <version>1.11.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-json_1.0_spec</artifactId>
+            <version>1.0-alpha-1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.annotation.versioning</artifactId>
+            <version>1.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>6.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+
+        <!-- Testing -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>2.8.9</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <version>1.0.0</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/sling/org.apache.sling.feature.io-1.0.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.pom.asc (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.pom.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZXzMACgkQ3f1PYfJP
+DZ/MGg/8CyZXQp3I4oO+X3DJUWj3Pz/PvCpH/7CyxETYeOOhGTObAeXzABAxQEfs
+g/MUXP4fd459NGOp/bEkShVdc4+1Urn9Z9kjwIK+FId2AfrC4PZx+NH8cbBbZpSX
+qphmd4xS3dx1BwcKSQjZBukmkwjZXwbYhjr10UV/5da5BJkuXfCTPZT8XsYzx/KY
+a01o1Ri5JihA0S1/m2P66OrAzK/Sy2nhaxNq3TLsgssgBE0vNHO4UyxyB/owM6uY
+N9Jyr9IlmFwjBaS2F7MpejXY7MS2BjD0dZjhS9dTvyMN6ZjXI1dlDWFWEamh2uk9
+piAT8kzqp0iqI+/APIb/cS0/86VvfUneq67PgUlhZqhfJxxcc7Mh0W3/P0KuqqR4
+4VaJHyz3lUpJt7Tz9rySCa5Ruh1efbCVlqJuemikFzCPGWCFv8KsyCL4taK3ZeeM
+DZl6sAXA5udJ8meEKWFHiAxsvr483SzfQpVwmjgvsjCtw2c75C75jQz4x/R7V98i
+m+1xF15zI4MVkiP1WIqQ5EB82gbaT9+heDph1SWx2QyJ9BNGbf/4aAdnRiDyOk1H
+e9ugx2/iuYPdURaoIn4SgLfgtFEsxCMwM6wuV3pWc/KMxDvXYQ4ZzLg9WQ8S716Z
+dpMmGC8p4tf604D4fQALG+T0/z3qZovvRLXONEF1gi//toCb54E=
+=+5tU
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.io-1.0.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.pom.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+d2285f2b10220c2ad93a2fcf474d15e5
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.io-1.0.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.io-1.0.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.io-1.0.2.pom.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+6e22c1d2802270a887ae908ef4fada0d2fd0a860
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYZ0ACgkQ3f1PYfJP
+DZ9GIxAAnz6cZz1tjn1tJP50oVGJuXi4xBcs29do4v7cBxPWok4BKXmBdD8SMFYp
+9qpoF1MS9PB9KjLLZxJXcuHXPvzELF/JH0yUnBdY9lGusE3MBNYaK2kqbYmucOYF
+ydPcmtuaB8l9amakc9ydCCk/VUdvLJgflJHWU9481qx0gCeUqK/jw92/TU6nohkW
+Fpa/SCn/bQvp9TEiW/gthb29k6eGUziuzJKmsOzcPK0GrFLZYQNZK6W5B/PI+R8X
+BhpO8s4CgLrmIP6h5+v9Gv7ee8jPx11tS7d7dYM3lm+BP2aHcK/LGWN4ZIG39yv7
+K2+1PJFYzEFX8Q+cQbbCji13Pso5c+ENowBZZrsYx6H9XwHq/0Ax+kn4oaDSYz8W
+ImZk8G/NRH5tZL2hu4WaEC/z1CQn9gQUEWuPNAzO7FLInkf33CDCcdlyx6GKx3Pk
+pFMc7g1vbJMVQL0hdGYoaPy9m6D+7ia1nUVRrp9nW/ImUZeuljk9UENHMwbyAjAu
+SwMkbtJAkfq6me54u+Qa1l2aDPD/oXY0hNRzZRHM4wx2NSQnGhLiW4YwKj3LlPKP
+aqMCumkOcOjElofyvjZwB7lzFc21DsM+dkB+VJN8ou9rRIyDfCJGrB5xU2ZQ5iUh
+1ySStm1DLhqZzdhhu+VCid4OW0BI6e1QK65IINTfeVV4+QCArz8=
+=pmIX
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+6031a2646f4c8de356d58c29272a2d48
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-javadoc.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+c3fe6f55bea3e6184df2c372fd12d9829ba5cfd4
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYZwACgkQ3f1PYfJP
+DZ/ZxxAAmcyjRntdGkQOwVvkTQzR1v0LQCpIPxnm6kB7mDB55E9Xdxk69XYr3Hk4
+XSDafeR7stBcUdSLuOmx0b6CJrDMAuErTp3HHOofHGP80wK0DSSfnW1jNIHrdieY
+RiPaBJBoN0fbHsLrtQxuFMFd8EzH5e5UGCWLmZFImM81dJfCcUK17boKJQeeUXL2
++ZVq4nZcm2JL3n60OYappfemRY7rMAyQAa0T4VD5zFX7BnDu8UMshoYdiW+Dk1Kh
+RMys1p4UtDfvFeBFdTxPOmILOGgeYGTdHnes/n+1qaoVAgH+3O8paHBJot4CTIzq
+QEFt8CPJyo7rW0zoxJbkHoD9mTLR8QSz4LdRoR6GHW3eR0Hk0XS6mZkREvIfhNE5
+dACAb+8T1emXHk0HU3h6kMdH+M3yWemIPxPE5sN/a8PmICN4SEKSD0tn6ZLnnbYm
+n0BrTVAZd/2ok7z8wISMvUqrxsV96bigPPljWKxnk2X/HxmNbd4m9UHsEY9joLfc
+LEy4EXM523J/tIrIqHWmjbrboerhuRearbmevIA8K9VXBZdKLg6zn3wvVw+wkKac
+y0U8IsEohVtpXwzGa3cMbPmQhJ327kZrUxoylaW/vEk13TayhuPS5yVK6FtsXcPR
+AYd8XbkYOMSr2lyNsk7bG8ygg+erp2qzjbuiuUlRS30d5Jv7oNQ=
+=YeYe
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+25ec4da2739785fb44e443baa013016f
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-source-release.zip.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+61e1158d69872d3289eae97a9eade15582a5dc64
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.asc (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYZwACgkQ3f1PYfJP
+DZ9Cmg/9HfvSQutl3b4+goI1As99SXsuP0T3Y2AISu7+k4N8WuVlp11FhDbK4cjB
+3vA0wOItLu94ujFY6BSHFfZaK4h+wt+c9OJ//oVVb4Qg9U/xM2g67Yc/YEwmguB9
++BqiCcoT+MqyPjPY3d8HyjZcR1QQwoJ0EHI1SWw5mSfPSwIZOcabGZGvV6/CNpgW
+q+u+55Z6AZNXUhf/mHrIqWt65/uC184EQ9o8FE1oE+OpfzTj1vK5SSAWyj9UZr53
+KaIZGwpYnmrI84QLy1ebEp9xYu4zBBeDOMztGTHWCHN6ZPJ23hziYdEXEFV0DQSB
+TNYbnHDwmhxYVJAZCjGtckyVbXh6WwZu+EsKdszu4bewrF8a/y3rt1I1wmHeFFYF
+MnAXTY0vUap4IpsfyEZFuQfyHOBwljN48w/Ojrsstoke4/n64TL5eelkqmB6ZfZx
+Uccxp6rceGAVYrJtMypw+sT4OT+YwxZif91GzuIbQ6IvW6xcysYdSWmMQhco6Nj/
+IBWWEy/h5lj3SWy1MJrHRaCkgOJvEeNlBVP+bRt7jXjWcXTe9fsRMlNJn+We4FVz
+LSvtAezOI59A0mSt4aCeEj7QPrYPVZmHHyfNySyIicAgq4Bf7KHtxaYHPxjx9nWP
+UMs148OphqIixpDQgRjJuPcScEcqzC4quQBXXi0hHGzhK/V4tCo=
+=T3CU
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+3954a068e078d273093637db683644b5
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2-sources.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+4f0eee20dcbcc1bac531ed5b462b4acc4c60bc78
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.launcher-1.0.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.jar.asc (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYZwACgkQ3f1PYfJP
+DZ/dmQ//UDztz0M7n4UzJoupnsnCil2vbRZ94YYYtJAaK9TVoNX5VEr3O/yMslN7
+CikvekicyatdPT3xvp3a6eLwaIN+aMqCBkUeV4S3g+bmSqWFVG1h6i/4SaPPLzyQ
+6nIgUj+bhgykOlRfq1KuNj9odJnNZWH5pyNGLcJOwAdTK1G5GtXvICQDkWjqu3a3
+IuR4tbijLTEB1tyVm0bmd/8ioNQJ8fBXoOsiwRDlWoKSH3c8qEw+lbqlJSg80A9Z
+He/+jDhxoxq+Z0p3fdqE8YNnNXxCodTHpDp5dNFnFOT2DVN/V83nQdDfSQwri1sZ
+95lJnsvSODRN6O9ZBvB9MTtDZB3ce7Usa5UT7aF+nKkvrNwp6FAAu8S60anIByhq
+GwjcSyxX4CJxP4joeat2dmLVj+5uCso7cwDjcS/OyoU9TPxgdsIo/cdw3HSmxcb0
+LEg6/V58IrE+q+015jfT+p6Wt3QkxagbSwbb6s2pdDz3RYxb4CpJdROISLpRwKd3
+YSlOacIbYS3RpWz0WeVXe8dKX7geOUPiP7RnNfULvaIrctPtftg5E8rEGO3SJpn2
+OD+Q4GJVtLLyDteT08Z5xDiH5ryO/9cKulp7jWLmanRZUynDWw0wyKR0rsj4lhDV
+z3GVoqMVmJYYdtEDnef6gA3bs4gXONLtFC+4wEQysXr6ZUwq0fY=
+=Sgc4
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+233650789db99c4df04d97547812ea5c
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+b1c99cadf32a9a8a00b3b8d3aaafcf44f3e741f4
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.pom
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.pom (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.pom Thu May 16 14:51:19 2019
@@ -0,0 +1,157 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+    <!--
+        Licensed to the Apache Software Foundation (ASF) under one or more contributor license
+        agreements. See the NOTICE file distributed with this work for additional information
+        regarding copyright ownership. The ASF licenses this file to you under the Apache License,
+        Version 2.0 (the "License"); you may not use this file except in compliance with the
+        License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+        either express or implied. See the License for the specific language governing permissions
+        and limitations under the License.
+    -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>34</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.feature.launcher</artifactId>
+    <version>1.0.2</version>
+
+    <name>Apache Sling Feature Launcher</name>
+    <description>
+        A application launcher using Apache Sling Features
+    </description>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-launcher.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-launcher.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-feature-launcher.git</url>
+      <tag>org.apache.sling.feature.launcher-1.0.2</tag>
+  </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                <execution>
+                    <id>unpack-dependencies</id>
+                    <phase>prepare-package</phase>
+                    <goals>
+                        <goal>unpack-dependencies</goal>
+                    </goals>
+                    <configuration>
+                        <excludes>META-INF/**</excludes>
+                        <outputDirectory>${project.build.directory}/classes</outputDirectory>
+                        <overWriteReleases>false</overWriteReleases>
+                        <overWriteSnapshots>true</overWriteSnapshots>
+                        <includeArtifactIds>osgi.core,commons-lang,org.apache.sling.feature,org.apache.sling.feature.io,org.apache.sling.commons.johnzon,org.apache.felix.converter,commons-cli,slf4j-api,slf4j-simple</includeArtifactIds>
+                    </configuration>
+                </execution>
+            </executions>
+            </plugin>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <mainClass>org.apache.sling.feature.launcher.impl.Main</mainClass>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>readme.md</exclude>
+                        <exclude>src/main/resources/META-INF/services/**</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>launcher/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.6</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>7.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.converter</artifactId>
+            <version>1.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+             <groupId>commons-cli</groupId>
+             <artifactId>commons-cli</artifactId>
+             <version>1.3.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.johnzon</artifactId>
+            <version>1.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Testing dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>2.8.9</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.pom.asc (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.pom.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYZwACgkQ3f1PYfJP
+DZ9rqhAAi83688v6+G/nTsv04eiWegjWlOgLmnY1+6no/IEWtLOWcWuHHXHxVDRS
+h8jI5MRZ/Ut3id8m2lf2m4fVnMBIR6Dz+Ilo32RljoSbk2t3LXw5R68eIS4l8vBo
+7Om+wAkJFpfrFr8Cfn5QyxKeeRHI/3Zk6T/EQM0q2d+nR7aCUVFB/MP7Msf3uABE
+yaJoZTJ0+y/v9TiWVN/3WFu3ESiF2h1OkINIV3XGVqshud6JZFkVqN8hk4OOIQ87
+7PZeSxB/m0B+hrEX90a34MGKKP2zL92EQxYwY8reRwtSj2qVNhC0BFjXEQY4yvBH
+RpxxXdy8/3pmkmct25Uxzuq5YIPuM1wWT4jsnegBzJoxkt3Dj2X5vEQc8MzPhIgP
+bpbg/JsCyFeIXNGAfGQPPhTc5FEa5KfrAeXpNjdg7f/Re78Xwt3mP3tHRkxKO8j1
+r5hE6iXNJ9zX8L12S7LbXVHuS1iX/OdFsK6pglrezlaK7ahs47Bezj++Zp7Ex0Ho
+cfVQ3T99NXIUjv12TRhFjNV/z6DBeti/0KmP/d2DzFhR+wwLSaSagVprO00Etk6J
+mQ1sGMq66FxH66tUedNu9RkGf8JjQt2v2W7Z/NA3vswI4glyE5RDRX6efPZuq0TX
+LOTEro2aEcA6aU7bOes2lRBXMHc+cxdIgXf5NrlcDnAePhO6Syg=
+=9Y2k
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.pom.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+e6018ea528de6df1621156f9e9eb63f8
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.2.pom.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+9eb2f648ca5b265dd74ac6516e14a2e8a0d12133
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYM4ACgkQ3f1PYfJP
+DZ/04A/6Akc7sIo35RobzHGuOmQ+Tuzy4c7qivtI8diobfK9AylATFM9t975q5Gs
+qno+dqDY8kalInZAIBRK7xKHzGk2kCJQSRdi174Vw5tG6qcQoFDdlxX5FFbGLUZR
+AId0v2hFRn6oPjDe5eOTbxPSxzDt5xGo8GEsuq/riozR6ZgWHMcWb5uCNQH8xVkV
+RNDl1hM2wkj4uPFPeHo3qh8TrKHuNZdD7MOgN1dg9mGzO5KUbEUG3ZdU5QojBQ+W
+rX/aZX+6KRbIGlzDYTqYwDCMOB/4jfYNjWqcbzLEfFA7Ks4aeIzdFRlhmdRJHn1Y
+gCguRqqY21gk6ruY+Btlci+HvChkk61hB1OYtqXu8Q2YllgdkmQOhOyyzlIWnSHz
+Gnm9FEX03F6u708GLbKksMbkNVNISXdgK/Fc+5X7COQU2M2Wfs6U1zLklJg/bVp4
+peEc3Tv1ARVXLiilEWizofW/dBamXPt0NNPa0rhAnx91ZiTYWXR/reI1EF020ZAY
+XOfIWeBLcsAh+tDrQl24LG16WQZe5XsAVpu9W6TD7KVRVJjFIQL8R+GXtD8n69sM
+5CsRdLnwl71u/OXpL98dFxDuwHPg8O/2wHJjvjQU3g3mT0Tmlzx7vZLWYO1DkTu8
+lGnl61W07tk9EY1PD0kUvpAYZXMdsDRLSufRwaZgyVEb1cF9ocQ=
+=vY/+
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+a318676ab007d4585c6c1e47ad541be0
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-javadoc.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+2d87d925d7c48c8d7b9107117a84c3a05fdb7484
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYM0ACgkQ3f1PYfJP
+DZ/nUA/9Es/576Qq4kWr1bcXMQqWD7rkF0QFjDMASmF6/52xMjpF/RTRrTofgzKw
+KwTU6fo3ws0Q8v8VXphEHcAPtLtEKWDHsKg76yn7VymcxQ7GRUnhKCHQUduENBeA
+RNPy+3oBRKP6ligc2ECL7m/WEobsZgVh7xmXPVLiBygZJ/GiZQvEjVc3dWgNNxRM
+Sw+MkCp92uPybl5XujF6Ir8HqpIKq8Bf9qfVjNEOImmJPBlA7iVAlUz/Dnla9eW0
+6T0Fk274qTUUS5XnVWSSinRmYNBgJ2BSGnpEw7ICNwCIRvGnVF8sh2z6Sve9pr4c
+ajLimKJc3wbdoGas2AJKcOtbTmNM4Fl80n/9uvrZjey1fk/unAPp4oClwcEQnzaO
+MWHfpAXSA5waqXG7CZ7nWJBpwMb3sGjzH2qU+JzsDOsG6GFLRl51uqap7+2R0Y5y
+C033qp3qboIvuMiFtxpwEgzAvpjiknQ2G6BtolfC/p0/rHtQQIgRC1whYcPZUR4e
+sOO3IDph9hBKjXxEimpZ/jdWiXVS4riobqZFsUb7iXc0YnuflzUA0LiAJcRQLfbF
+K7JRAlL3Zo9MRaVL7SuYrnBPrhAOZ+Ban2SuqSXM14moWlWu6CWTA3kQQUe3sV/r
+hFc5o44Jbe6lUgPR/spVX6XKfKE7Gb9TUS6YKC8FTES2ophORPw=
+=Ws+4
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+95d9528d195ae622ee54773fa1d32167
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-source-release.zip.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+5d881248508fb380fe195a89977f607cde04ecd6
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYM4ACgkQ3f1PYfJP
+DZ8K4xAAiHJLEO4ZZKezjdIpbJ8v7jD9fYG1ANQTOlhh5u9uuXkjxjg2+BH8CqNj
+XI6rjow+8Hz/Mih8nNwYyKm0N+dDQ7TEZsu6CBEHFa598CzHPbCO+N5VnaJlrkpp
+c+EenRSrQraz2dq10vE96U5cCvqGC1Um9yJq0AlbQke08yx1wDSUk3kBWzjzdQHJ
+EjKnBwgvseSGTEKxb65kjeh/TIR0/lksUk3fawBT8FV4r/JJyP2DS/6oTWl1ZtiW
+sw4XAikOpGgGN5pAsfNmCSbF+eh9mhuqJ+/xPRWD+xxSWNKEgupdJ102fHd8NH9L
+RgtKRRMK8JKcSH8mN7riYuPHuqlIoipcUmAcDXVK0Rg+34nOcNDWSs4tVhQMCGZ2
+RX74FdrNkBNkmO4dh/IEql6eMsnHz2OQWxKhd+7zg6kFr6avxfAGl5mdq7JyQiTp
+mopqpIqwRMu27sLicrnF10GM63SM/O5nOEN3pyLwyECt/LuTpFa4YSFe7E/SsyJb
+1BISEJraz07wdICUnawSroVIvj1V39pudAw1uglUN+fHsaUUGuyoNyW/sEI+Cpw7
++QjBBSfjITcIURn3K55v4hqIDEHZ+pbEvabjRSQspnZDoBRTwcu0tPF9YM/45LfO
++F9oeRMTGCGwiZ7kADpm29SAD8MzNxmd/vJuPNT0cqyB1z7E+OQ=
+=25Pd
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+84bb512d422ba8ca21b787b661b581fa
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2-sources.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+fcf92c1531f70a81db8a97ec3eb2ebe05b921ca0
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYM0ACgkQ3f1PYfJP
+DZ/PtRAAiIqf84yqagKqhDb4xoOiAnNPU3phZ8yz0GENpV8S5/4CNMK6KjhoUsDl
+bAQqaAVa1F682IAO66RtHGl9XmCBknfGGLq1l5+myNxRhY6a4KIEP4TFewuPfhef
+nh1zfDM8AbHA92PRdBaMfzrsQqViOrtbH7YNhO23kVePC4iEvbh9O7c7YBUntHEt
+KSG4IQ9l7Rzxx2Z6VdM3Ky2Gy7WkrTvlRskNlo1+CcWBSmiHvIpe3oTFu0INVdtx
+IygtzNXrYSD7tVzJvxTWOjbfHK3iiddbzKZBY+Pq5SJ5R4h/6Z2roDLqLR2T7HO1
+iExlKK7/fvApwlXoONU6juuB5Avvar1aFpfil1GGkkSj3kt4KkCFOPkzB51BgBEs
+pN9mDDVPRbD4hGDKl04n7/8SujOmgbKxh0AQpIDQNb0TJZ7AS91fVoZpKItLAQR2
+uIP4BRkwVBem6nK6uZRrttfFjcUEoGfCk2EEqnQhvszI0O7aKjMGU8/AKgHgmwA/
+kAnOy00YsgETOQRMmkmUXwpxHodeBOssAj4KjDMoTxN2hM3pw2N+l+7UM7SdNThH
+T6Bfa7METuQpbyZEPNetxi1/KzdUdnVSTlJt88iBr0Rd+/kRSRy2urTAKAlLQOXg
+g4wGSYs2Jw7Tl770IFkIlyi7eCcfpLJgmxpEIwPYcUSandQzX9M=
+=REVa
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+1c6e5cab0560df137d2203b61bc96f53
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+21d7bcff22548e60418cc076a81150702be8de5a
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom Thu May 16 14:51:19 2019
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+    <!--
+        Licensed to the Apache Software Foundation (ASF) under one or more contributor license
+        agreements. See the NOTICE file distributed with this work for additional information
+        regarding copyright ownership. The ASF licenses this file to you under the Apache License,
+        Version 2.0 (the "License"); you may not use this file except in compliance with the
+        License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+        either express or implied. See the License for the specific language governing permissions
+        and limitations under the License.
+    -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>34</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.feature.modelconverter</artifactId>
+    <version>1.0.2</version>
+
+    <name>Apache Sling Feature Model Converter</name>
+    <description>
+        A feature describes an OSGi system
+    </description>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-modelconverter.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-modelconverter.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-feature-modelconverter.git</url>
+      <tag>org.apache.sling.feature.modelconverter-1.0.2</tag>
+  </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>readme.md</exclude>
+                        <exclude>src/test/resources/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.annotation.versioning</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.provisioning.model</artifactId>
+            <version>1.8.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.johnzon</artifactId>
+            <version>1.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        
+        <!-- Testing -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.converter</artifactId>
+            <version>1.0.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configurator</artifactId>
+            <version>1.0.4</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>2.18.3</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZYM0ACgkQ3f1PYfJP
+DZ81iw//UaKhVMAA209aABR123B8LHIpp/V4vZO8NJgUnMUHR268iifplInGxRy+
+t+tNSMpOrJZso5uODWAa6PURe8C9AqPbgIAm0adrk9xu4rthzOusT4vUEhlyivXJ
+4FLzoNReE8lSewemBzePCZ443w0oSuErSbRzjDobYpft8jlGob2degkHv9I7IhId
+ABFB8nTtCtlUnQv1DEF8bQEpQfozDPRohJGgAyZ1g7FtX4AiaG4sW3QgoB8ofkWu
+SrLhd6YZSdHNRL1LOgcnM6hZVqKdu3+j2IuwbEbyE6o+/gfByKjs0TSJOJx2NeFp
+lQxAnU1MSMH/tdzVhSZjCwrERWpqh6esicg91OhROnZsw7eJXFLco2wyvzde+sEy
+xNUaZsgxBE+w9skHILGNgUh2ia18cZg+BE4U9Ti2cM1fjEB9iYcqIGVya/ML95Ik
+J0WZ96ndVedLXmUrXDWrX6tIbwefVTJf6rPXpmC9i8G0XtxrCgroslayxrDbZep/
+RNtPRl/0DIh2J5WkyDro1pl8L5b8wMEzCn2EqTsvov91sailz6D6L8/nRx0RPJo6
+Ryg+HnVbQWVGJTQqrcmE+KBOn+01E/w+3xMc6x+6WLXeAk33Z+UEHYyeE9AI44ao
+PcRS2D9YHcQ11P6c6RlRNis3WtgyOZSI3l0Zt9WUkJToHrPxN2U=
+=fNZt
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+b4532792bf7590ddba416a39e85b5dd5
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.2.pom.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+4dae51c82ea0ce2127b331830c2684d4380e9bf6
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZZPYACgkQ3f1PYfJP
+DZ+J2Q//cYHEL9M561pcE18nMFlVR+1DpfqRpv33o7dd51o/o27y9QtWXRmwU0lu
+M1PQhE6Flu3G3G8Bta1jx18AqttFyayWKfrCJazAr20fGlVdhNncEEvYxYhEiQwp
+pU6aXF4vVYfqfZXyYAnZUxZVELyzDgom8peRwo5zB3s51CxEia5Wekt5FCGEzJht
+AlFqqlrC/M8CXPpAbe3M19dDfhDMoUKi5W8gCTEksnvjs6CnCqpa4jzSDA+hd3Vs
+cOmS1JXcHlDi2ZOwn8P86hs+hl8OT9pC/p1iaBuVPqXpfzEPU1KYLM+zaKJxjR7L
+RzXfdlXJjDsfIH4RV8vMafZ+0Rs8p10FzgJySvzgI8koSVjxlS5X+eLw1gVx2MxC
+nmOypBRC7TXJulXwOAKssc1zXRbuURX2XOpzyfOmnGUD+oA4HxmVR6zno1TdinrL
+Xm0EpNwwbeH1HePrfbzffe9gp71hOD7dhoUEvEMwgs6C0hZaD82mHwQ5UOrKrA3r
+KFBZB4HIFh1+92v6qRFqmOhJ4V0hFS5InBMVTo+WWf0tAoXmszyObUGTo8Rsiq7g
+m634e5GurKG69JdZvi/bR4O6/H1d6s2R8c6Cg/6vZxLyPTmuYcDW3Rq/o5RdDlU8
+Nq3cIdQlCYSd+ayVSBsRW/W0b3Uf8ZiHKzZsY5yDlAOuSgCQHRA=
+=SmZo
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+b2a04fcb205562e13fa591a4714eac05
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-javadoc.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+7ff47b12d045f22e5bffef9be3e396239b5f22f1
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZZPUACgkQ3f1PYfJP
+DZ9IcA/8CYN87R1QNDlzdWXZbHwSVN58OPUg1CXmulbQRQJB3IMignsQfl5mF+72
+TygUYzzUfaI49ql+wOHsus78shPVKd1zwRwOtg8kVI57b0DG8ltAdBgh48ZFYUOr
+8VHbkwLXk+1Z8caROGzqTe91EKSXWlz73evUY6pcVVuP3OccWgNBBGjisvKSksx2
+hO4Nsz+PchZa5Xu3qrP6bpdhctLVyzW6wALQHswgotpnwma4Zg545EdC52sWeUf9
+ui6RWTiX99PlOmt1nUDDZyqEOqyvp4o9j0v69nZCWeDNu6orIxrirb3E+up4NdcZ
+98RCqbd5lryw5Nz2BKEqo+5lNDRIkZUxwWrexiK2CKSKBSSn+1B5DPoNQD8bnCSk
+DG8J/CDuIY4CFyjUUHa66MaisL30rgbBDx9aUu6dCxfNx5U72oDqHYMz7xyqpSZZ
+l5E5u4dITDJWzvWqk1SWMhM62BlrubwRyRkfHnpB17hgb77NU0jy/az2bGUdyTOd
+q0JaEFabgoNmTJZFCg/DM0eF0PpwmDoEPmaFJ1BJ2B91s44Ezx0S3fCQRaeX7Rad
+AgLZFPSE/LuczUWL1HObtkV8yixVPvjYCTh45VLaBkgIizUD/LmRVY2KiJ9TjtUm
+gsitUY6liydEibb+6vlBSMUR8er6yLwzhM+cqA/HeX7LdTjR75c=
+=P5o3
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+f03a7e775c17290c6b8f44f52409bc36
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-source-release.zip.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+a508bcf6511958862838e8ab5a6cc2760b210a7b
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/slingfeature-maven-plugin-1.0.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZZPUACgkQ3f1PYfJP
+DZ/gFQ//RD0ofpIFWNmDRSTTrbWwVS0Z9RMKn/+LfxYC651BqFCDP7/tUK/qlpqt
+8ZQQ3BQ8lbTw+A+kkED+9uwCUpHVbPsI8yJ7opgB5L45uNMBMZ1I12ke78bMgqPO
+QHvorsUON/qp6RcROoJeJdeMTFKhbgIfyYffAKKErWD10i5tRnb6pMnf+Uelf4vG
+uw/28wD+yOKrAQ2kVdZuZqCApqAtESuCzbobaSHqSdrm83l13NIWZt/dFU06Npyl
+kZX80x84IuJeVrYjPMWMNpBKervYTu07xBbp2nWb1w4gt6xAEAEQyoyK2Hpd8NpZ
+dai6HpKRaigjyhUYUzUmTKrGtB/zT3OKzNHdo1aQCeQqcAd+x46vV44Ua3zTV1Ot
+E/ndxQqnKM8NmBDXVYqXJKWLwEucXji++LY6zko0P3k+9zByGcRJM0clLMiFSI0K
+5/bN2/kxCBsIy93X3n6u53jaPiX400edndTkUonulxf1pVUuZQigCsHqfFOyEE+K
+7/itLdb15svtn1hIt3/HpNqQo5+iz0ZnH99BOnMg4kpIfA9q+wVjHoW2LWJaeuKB
+NEX4TTlfz+tbf1v2rJFSfiqOgPZIlALcR0MsBJISFuByb6XRQWwHAIznjNL7YPX3
+toN7Y9z7IbLmaj+B9Cq8JJ/cTqRa21sveETdZvOfsfwYaQnf3uA=
+=Sg8W
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+145966f1f6a4afea1ee774e7e9bdd19a
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2-sources.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+5a059c55d1499f6e5e55ce295e2854e76a805c69
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/slingfeature-maven-plugin-1.0.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/slingfeature-maven-plugin-1.0.2.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.jar.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZZPUACgkQ3f1PYfJP
+DZ8keg//ecjJLaQjHrTvg7+lo5lwQ9/Zt5X9Xei+kivtG6seRKHFxB+VpfsnsNOD
+LokVAymkyYEcCcKyQdC98DlAs4f/mOIjVO/ctwUPbN7G6T9Q4rfH19GMFFRNGXm/
+NJZrlxfOyKJq/s51zR3S2nZR1rmfx1+NQVJ5ZmkaY0hsQr3BTPcE+ovny9pYwTO8
+pUuxiU4CztTfRbCYpbiR61Xk2+hdfwxMHFCs2aKsZ7T7OGbtOeV9Pnk2ViRD651Z
+Gf0nkDirdF2lT+a4kdBoRbPuB9nxHP/GQLXIvklA+ZrALAz+/gOoQBkwfLEjfM1x
+NPY5zPdePMkC+pmLaH4aU+o9ZkFlSN1RH84s4132Y2owBslt7nodpgwpELZ+ix4P
++c8aQqv1r0tplJeZoDGjD742NBZDkaJBP2p3otEAWBrqaLVfrkaAaNjgVO6TJMXA
+sb79Xuj7QLmCLQtLMfpyvl1yEjz84QHL4HC48QwSpGYcpL5f88bWsVOWGlaL7BBy
+fNDwGVRXEMofkrcRIS660Y/Zr556+5Enkx8Ldqjf0FrwxrkVvTBOuWbMNUfIb0wv
+nZygg0u3593WEP6010qcIB/XVMwIoYfIeAxdNaMtF8a7aiI5tbN0DZHokBMwl2DT
+wfw9SAOXhX+WanjgMMG7Qra5nu5XJ4A6IiWNJmw65iR85hS1Gvs=
+=epZ0
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.2.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.jar.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+aeede7f5918c44d1f4eb2e18c66d75ce
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.jar.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+bb0a2bd6c932a5d677b0680caf2457206b4109b3
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2.pom
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.pom (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.pom Thu May 16 14:51:19 2019
@@ -0,0 +1,313 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more contributor license
+    agreements. See the NOTICE file distributed with this work for additional information
+    regarding copyright ownership. The ASF licenses this file to you under the Apache License,
+    Version 2.0 (the "License"); you may not use this file except in compliance with the
+    License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software distributed under the
+    License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+    either express or implied. See the License for the specific language governing permissions
+    and limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>33</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>slingfeature-maven-plugin</artifactId>
+    <version>1.0.2</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling OSGi Feature Maven Plugin</name>
+    <description>
+        Maven Plugin for OSGi Applications
+    </description>
+    <url>https://sling.apache.org/components/slingfeature-maven-plugin/</url>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+        <maven.version>3.5.0</maven.version>
+        <maven.scm.version>1.11.1</maven.scm.version>
+        <maven.site.path>${project.artifactId}-archives/${project.artifactId}-LATEST</maven.site.path>
+    </properties>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-slingfeature-maven-plugin.git</url>
+      <tag>slingfeature-maven-plugin-1.0.2</tag>
+  </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-component-metadata</artifactId>
+                <version>1.7.1</version>
+                <executions>
+                    <execution>
+                        <id>generate-metadata</id>
+                        <goals>
+                            <goal>generate-metadata</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>mojo-descriptor</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>generated-helpmojo</id>
+                        <goals>
+                            <goal>helpmojo</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-scm-publish-plugin</artifactId>
+                <configuration>
+                    <checkoutDirectory>${user.home}/maven-sites/${maven.site.path}</checkoutDirectory>
+                    <tryUpdate>true</tryUpdate>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>src/site/markdown/**</exclude>
+                        <exclude>src/test/resources/**/*.txt</exclude>
+                        <exclude>src/test/resources/**/*.feature</exclude>
+                        <exclude>src/test/resources/META-INF/services/*</exclude>
+                        <exclude>src/it/**/*.json</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-invoker-plugin</artifactId>
+                <configuration>
+                    <debug>true</debug>
+                    <projectsDirectory>src/it</projectsDirectory>
+                    <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+                    <pomIncludes>
+                        <pomInclude>**/pom.xml</pomInclude>
+                    </pomIncludes>
+                    <postBuildHookScript>verify</postBuildHookScript>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>integration-test</id>
+                        <goals>
+                            <goal>install</goal>
+                            <goal>integration-test</goal>
+                            <goal>verify</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>6.0.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>1.6</version>
+        </dependency>
+         <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.converter</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configurator</artifactId>
+            <version>1.0.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.johnzon</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.analyser</artifactId>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-core</artifactId>
+            <version>${maven.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>${maven.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-artifact</artifactId>
+            <version>${maven.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-compat</artifactId>
+            <version>${maven.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-archiver</artifactId>
+            <version>3.3.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.plugin-tools</groupId>
+            <artifactId>maven-plugin-annotations</artifactId>
+            <version>3.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.shared</groupId>
+            <artifactId>maven-osgi</artifactId>
+            <version>0.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-interactivity-api</artifactId>
+            <version>1.0-alpha-6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-archiver</artifactId>
+            <version>3.5</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-utils</artifactId>
+            <version>3.0.24</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.framework</artifactId>
+            <version>1.9.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>versions-maven-plugin</artifactId>
+            <version>2.7</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.5</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.shared</groupId>
+            <artifactId>maven-filtering</artifactId>
+            <version>3.1.1</version>
+        </dependency>
+        <!-- schema validation -->
+        <dependency>
+            <groupId>com.github.java-json-tools</groupId>
+            <artifactId>json-schema-validator</artifactId>
+            <version>2.2.10</version>
+        </dependency>
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-core</artifactId>
+            <version>2.2.3</version>
+        </dependency>
+        <!-- APIs JARs -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.utils</artifactId>
+            <version>1.11.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-api</artifactId>
+            <version>${maven.scm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-manager-plexus</artifactId>
+            <version>${maven.scm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-gitexe</artifactId>
+            <version>${maven.scm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-svnexe</artifactId>
+            <version>${maven.scm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-model-builder</artifactId>
+            <version>3.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-exec</artifactId>
+            <version>1.3</version>
+        </dependency>
+        <!-- testing -->
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>1.10.19</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+    </dependencies>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>

Added: release/sling/slingfeature-maven-plugin-1.0.2.pom.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.pom.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.pom.asc Thu May 16 14:51:19 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAlzZZPUACgkQ3f1PYfJP
+DZ9J4g/+NJklT7YTC562RQq0+rgbtckuKmSHCp6kid5n0rPbxZVM0LgKSq+bVPLl
+vB32cgQb4hGir/igcD5QRoeiD7Q7cmgD7MtjT6O19kZqW88CwsRFI4gQusrbNlpx
+Gd8db7FjBeg+52IyTMlB+u1rg/QoMggPMiXTNOlAQ5lR96wAO5G+PuGSkwiLEIeG
+mi5wxcFMkC/wEUIf3Sgd1wfKNnJYnrJY4veOShl3eoxZuj5zznJkhZRvsngyzlZe
+vTXg7eDsJA/JqPiZorh0Wo5LUyE4CLMrqxqjSbOW1r+LPA7eLkqmr2jm20iJ/Chj
+oAKLmz/sEGEk646kUvgArA1hxe0Yk1nyDFdZ8naAUC7+fq7qUqFeSXhzWTUBK3tN
+MdJfQCK6LCXqf/8e/gClsBHSkYCSzgyCGqZW4SqgQNuhjKK5tUAF764ishNgi/y4
+GwWZ3ng0UnuiwLTz0hqrLE2bdOvTAnwGLTINEDDucsPU2/AXSF5z6EKeJa+NFRjO
+suYYts9jTKs6onKSRQqDUys310mhODYRWi2wjmBEMajzhfEMYDfXj1TdWM5Q5a01
+o7YuknKKXaClekSkABZkg7gmxUGuwre2uS0FAtyCnflxqBjdRdQYNdY2KjtSaJmo
+q/6zao2rFRYjxcCFaNSEcJ22M1PtnM4LELQRMG9qKjyKoq+Z66U=
+=bybK
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.2.pom.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.pom.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.pom.md5 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+2887ecede3c36f5a4142767f61252d13
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.2.pom.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.2.pom.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.2.pom.sha1 Thu May 16 14:51:19 2019
@@ -0,0 +1 @@
+980bc95aa531ebc8adbf7a0a00d95d507573db3e
\ No newline at end of file