Added: release/sling/org.apache.sling.feature.launcher-1.0.6.pom
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.6.pom (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.6.pom Mon Aug  5 
08:49:12 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.6</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.6</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.6</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.6</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.converter</artifactId>
+            <version>1.0.8</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.6.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.6.pom.asc (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.6.pom.asc Mon Aug  5 
08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWM0ACgkQ3f1PYfJP
+DZ/KhxAArJUdLhRzdnZKXS04dBMQttf2+JMo4vUL2dgf1fX7gyLwqfLr5iN7kW1Z
+7E4HAS46MkVq1+a3DFGhL6WQKNl5hjqMqOjjwpDPV7+aGVnpfWd6dCUWPgxqZeSg
+ogPrp3Fv2ePiyxzVw18FThSdsTwvrJfIrY09x5aWV3iinkH9uXyUuZ/lHYgaPul0
+pr4cnWOizfAr2Rt7zMsTh/fysmaLprFJcKnIeTIbu9TMMVEeEy3FyChYgtRFQFE8
+ndZMNR3icNZVUpva+ewUuafErns/oxtHm7qm4fau+0DG3bLJXZnGcc1HgmJKsFcc
+plA4wtdk1F5cLTOuccHzt2nNla+2VW8GtlW/iEJdsxp2DG2H0ErpVpUItMcAa+ri
+Veal3TXsDUmBUY6F1z7nNHrc8oSykaFPRXvkYiVzZBo/6JLkd5E/zhEgsE6fOmaL
+Gt5ryZxz6zhTKyZ4Qq85WKpp9Cu1oWwcP7u/3lsa8X/6DzV9UtyLDCjaXpTJrBV8
+CapUDSAKQrd0RoqlwaTnNjCFRl3odEfVkYYMPYQ+woPLM88rKIFDQ0MW0CgUG/OA
+uoP236Ye6rqQC5gkP9J8HiJ8AsEnUpjbhsMJCp+hqdWaxJYehgK7l/3jWviow4PL
+V63WrWvpSxmCoeibYMZyUSOgYfK5VCYPLqo4I/OsTQpAx5pMbio=
+=d/E6
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.launcher-1.0.6.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.6.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.6.pom.md5 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+ecd4a4599b072e6586c60e39c5ee8ac6
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.launcher-1.0.6.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.launcher-1.0.6.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.launcher-1.0.6.pom.sha1 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+81baf2d7657808ef3b350cc808a0ae74e1ea79ad
\ No newline at end of file

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

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

Added: 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.asc 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.asc 
Mon Aug  5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWBIACgkQ3f1PYfJP
+DZ9KwhAApmc9rtqGxpzVPcFKKkjSUNgQX/hFuP1HSsMZpF146vV9UBEaYPp6E3ph
+v3PJ0RGrtn2Ub5PppgmeL27HBGATlKNyaPMYhkDDbSd0w8SQLe+puAS9rvqofAmT
+RxSJsV3QXfG6aw/K8GbaCUgIWw3RP3GOCMp1papn/tWhcN0e1u2wwDlnWP7XjJVc
+g+NyZ+AefsIpcOibiGed8rfme+572aq2e8WObfAx3QE9fiWe2t2RwXFeDlBF99VE
+IGBGKQJyFUDk3Ffz27kr5dHR9iamihTPez/PGJ1oNSzi9V/b5QkHX0agqzgVECOO
+Zo9DN1UOiHwZYTPgEyvt55OG87kUeVQ2Lr+kwg408sUGK4arWjjDMKAhqFSgnARs
++WouEvW+Uq0LV4OFp5a8so3YwfBFNFFgOEYf5nrbm20qZNuqJpRfuwRW68PDr9/4
+eRgAMKaTOXsRcyGTZbNnMbXSVlrO+EaCr971mps6vdQCPITsuf1hl+5mSzJkZcd8
+ibAxCYd7crG0oSh8ndCK1Hk1LEtyomZfbDpxkEOkAZd754ZvtCV6puvxkbfXTLFE
+2lijycjtbxJ92YvpbtdchU6XZRLf8cq7vEnPZlHRYXrPg2OysO5lFVclpNIlZTQR
+azBU7wQnnvXYg5zJSua+c6cgM0mxcjeXdH48WSb1disWeqYywSw=
+=jNMV
+-----END PGP SIGNATURE-----

Added: 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.md5 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.md5 
Mon Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+891d77a74a4b97a3b0d701cfc39c269e
\ No newline at end of file

Added: 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.sha1
==============================================================================
--- 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.sha1 
(added)
+++ 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-javadoc.jar.sha1 
Mon Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+7b4976a25acfb53ba46935de71c6fa3cfc9f1583
\ No newline at end of file

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

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

Added: 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.asc 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.asc 
Mon Aug  5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWBIACgkQ3f1PYfJP
+DZ936Q//fpoo+/0OQCP+ZK8ZS3IljkGMLAF71UDGPMmZzMbmYewFPJgAkgJPWbrM
++PZ9zo1kOu57UyHstKJvvt6wdFVcTV3Tzb6JKUDWUBl3N3qzb7OhVvxS6Z/imn+9
+hKd2UkrgjsgLec8axfcUr/DKjj5qnRHqvAY+WwlT6lw+hq1sgxgU+PuKHe62b2oK
+Efvej9NxBdT91PAbJiWgqceE9Hg9IyGnEusYRxv9E3iKVeFsB18W27ph2AdU7AU6
+89lY3sxM90EZxb3p159lNQ6ngSx5XDH6lOLf11RX/NvNPVwvChAwqVtr2PLOVBNu
+PqjP61mnHFDtW9YObHVHy1YJjWHrMlgb9EZusJFVNoiWuX8K7xjS8XfSHxR0TPwf
+OmpNBIt6F/5tBaceYwMFZ3Y+vomhqIrdJN3+hNPNbbjrzIMP0aIl/eBSUhzt8llt
+wqzeltAWmvlbFyX8oJqrWzdiNpC0eXw7YMbA4lX/XuGIYjaozyHquitwztfTiQwI
+e1O8JY7tYwrjLqwoJRs6JkAR7u5mjhBdLWeZXv3q6BHShtS3ovS/VG7NFDR0NfFv
+O11tWU7b5bAHFf0OPhsuw2BNV3+mb1jY4SV+x4L/9EXAjqaTYRX+kz7b7tgZRggO
+efo/AthSL4+UVGmH1CzpQTA6gcgg2osrOEEtPd3Wkv5E2Oqx8is=
+=Mpr7
+-----END PGP SIGNATURE-----

Added: 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.md5 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.md5 
Mon Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+404d72e8bc64fb11d07e48b215af3666
\ No newline at end of file

Added: 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.sha1
==============================================================================
--- 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.sha1 
(added)
+++ 
release/sling/org.apache.sling.feature.modelconverter-1.0.6-sources.jar.sha1 
Mon Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+d24ea1999af042032fa8e4a112573a5407631e74
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.asc Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWBAACgkQ3f1PYfJP
+DZ+dyQ//bO7HYLAitvjgYjtJ2Qb7jczMMU0GQuMKij8hmBAJktxFHhfUFDqdMFAM
+z4/VsYqOZtHVlB4bfFF1A0Li1o8Pl87MWwAa6/lZoV4dNQt1dJx31Io6i+i1ejBV
+hfqFpekYlF4d182HDqHtx4B4Zgt1Est4CCQbEhbzWTNlNtg52/0tK7Xb/1z2Lwxz
+koXHYPgjk/xuIVgOZteKhz6kXAIOYzup2x0KSiaGHiaBmqz/RZRlQpYHqzKaBmDR
+Y8wVElSEkkExEK2qipVmQikVzFe6X6+RiwQBNEDjTP8NZJzskCrvAX7xIYzTSwif
+TanhFq4oYLntthqk5M2kFW+Djz5QJ1tfsYmNhxObWisI8KcciAvaa5X9GkC4Uj3d
+ax0BvOJAWbvOdEMw08hOA8OnF+nehVpi3pK2dmHhgdL25POAcDw/jLSMpfbNicjd
+FBUE3NHZb39FQE62hqYYIC4MVYldkqhRxrphy8yiNY09c8kxWobq6vUprebpb5Oj
+/1aLegeVqxRb8fqoQ+30T4HC+88dCOCBw7SJX6IgM4IblFDC1rmiT+uhgqLOdeui
+mt5PcFF1K/1HSv1stz+zYTGhJXZKchTloUbQL9hziHX6V3xRS7E2JuWzzHHwxx8k
+U5/SBoK/L00YQwqB0rDh7IDS8Ztjv/6PR1X1WbuufbD24Mp40R4=
+=W7bC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.md5 Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1 @@
+fa072339d564c81f6df3eb69ccc29c24
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.jar.sha1 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+3c908372e3c2596f8b9565c490bbfbb4716f1529
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom Mon Aug  5 
08:49:12 2019
@@ -0,0 +1,205 @@
+<?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.6</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.6</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>
+                        <exclude>src/main/legal/NOTICE-with-deps</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>license-maven-plugin</artifactId>
+                <version>1.16</version>
+                <executions>
+                    <execution>
+                        <id>add-third-party</id>
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>add-third-party</goal>
+                        </goals>
+                        <configuration>
+                            
<fileTemplate>${basedir}/src/main/legal/LICENSE-with-deps</fileTemplate>
+                            
<thirdPartyFilename>LICENSE-with-deps</thirdPartyFilename>
+                            <sortArtifactByName>true</sortArtifactByName>
+                            <excludedScopes>test</excludedScopes>
+                            <licenseMerges>
+                                <licenseMerge>The Apache Software License, 
Version 2.0|Apache License, Version 2.0|Apache Public License 2.0</licenseMerge>
+                            </licenseMerges>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>appassembler-maven-plugin</artifactId>
+                <version>2.0.0</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>assemble</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <repositoryLayout>flat</repositoryLayout>
+                    <repositoryName>lib</repositoryName>
+                    <useWildcardClassPath>true</useWildcardClassPath>
+                    
<extraJvmArguments>-Dproject.artifactId=${project.artifactId} 
-Dproject.version=${project.version} -Dbuild.timestamp=${maven.build.timestamp} 
-Duser.timezone=UTC -Dfile.encoding=UTF-8</extraJvmArguments>
+                    <defaultJvmSettings>-Xms500m -Xmx500m -XX:PermSize=128m 
-XX:-UseGCOverheadLimit</defaultJvmSettings>
+                    
<licenseHeaderFile>${basedir}/src/main/legal/license-header</licenseHeaderFile>
+                    <programs>
+                        <program>
+                            
<mainClass>org.apache.sling.feature.modelconverter.Main</mainClass>
+                            <name>pm2fm</name>
+                        </program>
+                    </programs>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>3.1.0</version>
+                <executions>
+                    <execution>
+                        <id>assembly</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <finalName>${project.build.finalName}</finalName>
+                    <tarLongFileMode>gnu</tarLongFileMode>
+                    <appendAssemblyId>false</appendAssemblyId>
+                    <descriptors>
+                        
<descriptor>${basedir}/src/main/assembly/bin.xml</descriptor>
+                    </descriptors>
+                </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.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.6</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.6</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>
+
+        <dependency>
+            <groupId>info.picocli</groupId>
+            <artifactId>picocli</artifactId>
+            <version>3.6.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.8</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configurator</artifactId>
+            <version>1.0.10</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>2.18.3</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.asc Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWBAACgkQ3f1PYfJP
+DZ94UhAAnUYoAmjouTpLihjYAQ32AktM/SKiYkGan0cgoiaV0P47DrSLcWA62ItT
+OmxEcpH+P6oQd1RBq8jdIY8+p1PRkpJxrWMSnVReqaAYZxD4h432oGgm69VLOgDQ
+Lg36jLGYmwso+p8xiS+neM0j6FDzEfr5yAkHeFMvyUEUVTy4KNcys5FXmFY0o5cA
+TpgfBhg6OD3zInmU1rNrZSqdRXqawRzRkhekf9UiHdptbAcMenW1nd4BV0e8hcXV
+iLjIO5OtQ/yRa9T9vVJrKvjNai7CdPgmw2Yz4Lx7n6P580+0SfcmzV3ODixYczVQ
++p67DJSKuzIHEkR7b6cAFart+ixXs/Y/7CUutMEs/wPmPCt4xzZ6prwoguqNBz9b
+UcPEAVRUFTaqQgshHiEsBgr9Y2L0l/ADIWJJhUC39dfPNkqS9f3YZDbMJokIJEUJ
+b6dKdkA24wXQxjY+Gm7lDVTlDQNvu1tHiPvsOh5Avb5awUCeH/OvJKHe83Ekp/Dz
+brA48z5B/NAKI50IyRo3/XkPwr8fDDSMiuvI2rttsGQYhxc4S3sZTVJYbeWeGmPb
+70tId0xF1M7UGe4NUwU7mKhGN/kUd2bYKkkyXdsju/4RNrpOMQyJIJPCudAtc8kF
+0e9C/eMHeE67NKsWoKQxzOZ6z2AsOfTm7TnJaN4ZXyUNyZ2eIRM=
+=Jx2w
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.md5 Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1 @@
+a73815634aec5750e7f8dfb1b44689ac
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.pom.sha1 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+e415b72ee306e1c249901dcfa4e986041b8b02ba
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.asc 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.asc Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWBEACgkQ3f1PYfJP
+DZ84cQ//d7D6pta3vXiEltvDybwB4Qs5gyWL1vbIei4hw6+6EnBa6YMPLPrlHjdb
+xeXQCxfb62W1zXNIfnX9sZxpyM2MvU677sgnvXl+KHVZKQrY3jxCYj0vArPv4GkD
+25RqbsesSgvyCJItj5+v8SiuE6UIFYn1JznqmzrwTtFm7O4daqR+IwPN5vzZlPKJ
+qpkxzVJy88omX/11/K3cXwlStFvUOqNjDy+9lqK5PXVltZiFJGQGl/qcH0PXDq8p
+BRM8gGNrazxPgT0baqBhKhdpzX9BnFivUIPXJHYnC5PDvfNBkQMi/wrITpuvMlIg
+AQ901PafO0tQuUBiiL51r5jNmW4yKCV1cxJ67czwc0WFwgQ3oDNd3WzVGhWKgvOR
+vsXmoHRanJ0EN/2CRN2s05w40QPyojU7uEccJ7QfaJrNdqmrCT/8XzOhQB0QtGeW
+/3I1porsqJrCBI7PR7wHZfrrfy1TE1v4IS4Te6r4rAQk8j+f2hS+TED+9IT3XPQP
+5pLmuQi/UnI/0ed63D7ACL7JNcI9zQzCPjz45/SN3MkBLkw3i4i+8XdJg6Lw3Mgl
+j9sxXPQURxYOTwyAbq0kaaB6lgMeNC/ifKBgMMWuI8ypiZp0yXwU4WYhT4vVc+kV
+QFgkZXuzJPj1sFxfYGoa44EPcMzSK2oHsE8VEhBgExb80QzCY+s=
+=Pmhs
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.md5 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.md5 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+10ae37b83ced966d59fc27e08de91e7e
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.sha1 
(added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.tar.gz.sha1 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+104a70f427c1572cfb5532e53f9a1a48cab71fe9
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.asc
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.asc (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.asc Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWBEACgkQ3f1PYfJP
+DZ9ZIg/+MTqk68aeicbetGYwEdntp9Hjz7o2S1Klte5tW4dE5cs21SI3+xCJPtV8
+zR00bpOg6YSGauS0KTtCYmIHkZ53jFllT5S0bduEJIqvoTyOgSUjQBL6vEoWssKJ
+ulpDG3ozIqdhsIxHsl6ONLGPzPdZ1ou7rFGV0lmyoQulEMGNT8DJ/hl+xbGfuj4G
+Y3+cm8nfS0GOs52eajPTuKzEpz12mDp9nfbtpHFyjqNkJDgjC+lD5Iod3T8SGeLR
+qsx9LhrZKF7HzxLEeRJSVRdwpiSKz7qr+zpaySPQgJ8VMRBjZyH15FeTNaZkEzQG
+0NqnSh6Ehll+Aai0OmwCDeEbrXnDcNpuWUpfPom4TL92DWiF46KAp9mQq0Eh2IWo
+NmBp9ZWa0Luk5A1yZQ4LLLBN3ka5Gf4cEpEh5ijDYAOu3+9M3APynxHg0KNnEwpF
+GNk9TIRMde9aXtzf06ITv8I18i8lQMYnpmLwPsryVt61pTXibjiO1U4Rp9XjVwnp
+ofsZvAtRIZbyykNrz4Jf4c/6d8ntaUZDYs6GKYA22UDZunH57CkrHEWhZdURsv/L
+OhocNEpj38STqg8eHtIARHGBZW6ggMR9nyq5T1WgaYcd/VmECBC5Mz2VfhFO14IX
+x1htp3xsw7QitC5juO2VQa5K0Zf8O/QVPTLi1G/mU7RZC6No7co=
+=ypEp
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.md5
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.md5 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.md5 Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1 @@
+57d6caff32a7fd0ec77dc1edb79f760a
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.sha1 (added)
+++ release/sling/org.apache.sling.feature.modelconverter-1.0.6.zip.sha1 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+e7ee2c3a06fc3c56b5369d6accef80da27c25c6c
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.asc Mon Aug  5 
08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWoQACgkQ3f1PYfJP
+DZ/U4w//QVVSCOfMt8ONJtkelmxyjB/79B5rUj9NpKXV9ehL+7AqtFUwQUjtFNt+
+6X9uOxVTT1Li+sachI1sUzZQW4bO9evPAOLLrfN95hX8nxZR0F+2mr0YgcJZirDR
+THhZMxnDqEijV6KlQ9QoGwB7NwjSZqe4xzJM1XnTq7v0V8qrQdBjTP1HlZ4EoLWM
+W+UGuOc1CLT7LlFSBjF2NRrSeCTmuP/x9VmwRIVsjXMtxIpv6AZUFe7Xt5Fl2C+c
+PIuRVqeummWT0DkO9ZpjN5IFfa+BrqeK11YC2Nnjo+ybfZub5n6Fb/cdXpR6CM6u
+Fwp009jKzqQX/SkRmzE5QmhxvmftwUbonQ7J4xibGayezjfloI5tQpLkMQBm1g7k
+z7ctZQ2WU4LGIBs3z+YTPub3uKL72QzgeiMVYY4LGFL6uz1vA4ymps5r0h8ctboF
+ofXXpf0mX2arW6rTPL3DarqWuCDmKh4Pn7RwDyktJMWaCTmArJrFkU5uLyRnixxe
+o7ttEjlPMd5Mq/TubVbhrlTPFN9ssVhsVxCxuzUKxXVCRk00N2zv8p4dyZZGTePh
+p55BoGYhnftLnfB97fsHJaHEa6s7VLvdRV6iU8zV5LhydVTzZNfysVbfLsxsIt40
+xb2TvSDV+XCMI29SGa5rm3Fp5PwqGbwlAfxwg1UvOxpUKfIu73Y=
+=gp7r
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.md5 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+d527928a0753c06c9e86830750f6dd4a
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-javadoc.jar.sha1 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+7e3148ce93b303efa26c071ca00ea685ac26c273
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.asc Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWoQACgkQ3f1PYfJP
+DZ/lQg/9FE9ZLg+jGMoZozju1kl0pZbsqPhOlQnEJHM4nXnLuqw8v6bnLwyxwixY
+AV2DnwbxiJahIIv1hyWUS+Uke7Y7U/9A5IhTp9UCPNAIgWkCaVurbZ7q8euxAIhZ
++4gtGcxZgEQRNeOyz6Unyis28li81gRLKhHRX1fhE+K8eIv/c/OSK+DJvbh2lQ+v
+t450vnsDGm2hbm/kpYTwjeTYRu07a+F5WIfetgY/1h2fSZ/wGjnRvn5+zPQdQDpk
+GtBVaAzW/lxZgSnw0pTXb6UEr9wTt9qfY4+XHyNXa0tl7iYU7NGnW01i2cUqtj+1
+PfY+s/5a7HRkX7pruW/SigtEHkZd3PMrNLli7Ruh0UR0R6dj1ZP25zvRGaG5wOfk
+ajb7NdRZVfZ7MEJJvuz/RusSa35ZlPq1yg/ZuA5+djS4xlFGHOUiT4lbe5EzXIDJ
+lmMiWsjVYUU5fGHeSK0vDpkoj/4wM9gS7TAgRatyU/+c4aSx4aHWhtDwYegAaPfH
+N5TSmmg8tUrhf9jhhDjvDKI62DIw3mD0ny7vokoszvLcq3SZJyA+WIJ3Wpn/d6Yg
+ol80fd7jwLBuv9h5pj2KVQbGiH5y/p825IKEOnGwv7c/0Vf4nxXvuN1ZU3nP3bYS
+benzDePCVAFjnZ6uOCLuUeBl1fdGDTPt3QLDYP8WtiKNYoYMROg=
+=QU5y
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.md5 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+2de34c04b91142c26175f82abc6e3bc5
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.sha1 
(added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-source-release.zip.sha1 Mon 
Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+406258abfb46705e87ea1dba3e4283c00d065c8e
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.asc Mon Aug  5 
08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWoQACgkQ3f1PYfJP
+DZ8B8g/+I8+uPB6Qu2jyj2fAVUz1GrHyJUfuhD5tVpV8L5VZKtP2z80yRuVb71nZ
+TFh9iy4hoYiTT/l9EIGZWXVXJnT+VR3MCLbhwWa41h6ptBIW9f3fpX6tcRStL6bW
+x0vRuR7gaLUdWipWzTL9zCckNb5pA8aeye79Hha9HzNprnI6wmfJoKInaxDuis1e
+5H0f8/sxNQbbB6z3usINYlM8cERaWYPShPOhyP8/EZp2mdUbhdVEWWOxGGUYLYmN
+Ws1wXmtv3DrLmiGiqDS3LXRaGgKhQhNpsNJ12FDJzZnvR70dQQ3qyxtjkocki+l+
+8V2B05sjlNaFPejRXn4vnRyIYQewACFV6DeKvWHHKwc5IjgMxbMMnaeZqw98mOVD
+X7nJolEd+SPOT7Tcj06WkK1xSIM/Eyr0uF26wNzBMgiGJ3uRs6BCPLBD7JWLjXuP
+jXDjKPQ1REQjHgXPAPegFt7iXUi4tFuQ/9fpKJvQIoyM5HICy4tWLrY9QqHQFOOs
+zFBccLeGam/1eIMQe6dikl/k5BpEpKo3jFWe53cW2tRgZyLP15VgzH3geYxGMI8G
+fbPMsL8l8QrIAjaqr3iIWKX2hrVL8jHA0e/+2kEjr2y/cVsCe+NeZG7nFk6CfS3p
+TKLqaaRBcxwcnMjZighPjiFvHmH3Iersfd/UllTObfSq9n11qUg=
+=aS+u
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.md5 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+b006730d76869d43c79defda83d10a9f
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6-sources.jar.sha1 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+63dd80747be5873b6c0b1cbdeae09adb30dc45e2
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.0.6.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.jar.asc Mon Aug  5 08:49:12 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWoMACgkQ3f1PYfJP
+DZ/igA//T1divIjen8a9vKIWARrurGdYMUcVCBybtARkxpIc/95mCdY9KK2qh/G+
+/3JyQGkQq1XMUvvxsfgwq7pLXfFMU261sQB0jSnEcRCwySwI7nU2AX5Yt2C7U6EG
+ghaP/G1V37OGTtIGl/yw8FhhX4wZbCgEN0dHVvHwK03cPcQ+QxCVHTDHqC0tpepg
+LNXKTwmcEJ1NT1l+1LK6QjVuYERowty9fMdaCyNVa7QrHTTpTIY97pqU6qMH9jGl
+SSvg/O+H7bEr5YcCCCApNyrA+uziBGQfsfcbwWGrvaDY8NwITxkHerhAsVe9zPqS
+hqov523f7DgydKtOW4B/yLurbq4Q1GcYPBOotbCV9kqY5PhdsEz/EERkxo7UnMGX
+UNKW0LWZVFa8joXkNh2MzL0HFA+Z9MzpeRju801Knw7iC34mGVRY/cZbRV8f657O
+8V4g9Ifd7uJNH5k43KYxrN9BdltRHQWMykg72i3bvMyLx6NaeDXXdFvjs7jKcJ/D
+FusvEpKp+WnFK3uhAcnwBqxl43R1q1NWknH80OH4WMmo1J8FXBs88b4mUhG/O+95
+nMu1id7TrPb03pAOtkSAY3XY++Se568x022GhsXz1xYl7QUjqGAhRMEtavOrdjKR
+2HT16roT3p3LXaUs6ICPpauyOsbbk7e3WFW6jnrFQpSHPlUb08A=
+=ckW+
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.6.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.jar.md5 Mon Aug  5 08:49:12 
2019
@@ -0,0 +1 @@
+688ceb33bb706a602d911275f6cd224f
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.6.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.jar.sha1 Mon Aug  5 08:49:12 
2019
@@ -0,0 +1 @@
+6c1381c7a4fc86b6859d63abc592ceb9f48efbf8
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.6.pom
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.pom (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.pom Mon Aug  5 08:49:12 2019
@@ -0,0 +1,332 @@
+<?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>35</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>slingfeature-maven-plugin</artifactId>
+    <version>1.0.6</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.6</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.8</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configurator</artifactId>
+            <version>1.0.10</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.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.analyser</artifactId>
+            <version>1.0.6</version>
+        </dependency>
+        <!-- aux dependencies for Content-Package check -->
+        <dependency>
+            <groupId>org.apache.jackrabbit.vault</groupId>
+            <artifactId>org.apache.jackrabbit.vault</artifactId>
+            <version>3.2.6</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-spi-commons</artifactId>
+            <version>2.19.1</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <!-- END Content-Package check -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.diff</artifactId>
+            <version>0.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>
+        <!-- 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.6.pom.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.pom.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.pom.asc Mon Aug  5 08:49:12 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BWoQACgkQ3f1PYfJP
+DZ9LcRAAoTtFfVGPPKkug7ZV9aCXrq022AJ6n+zhN3K4hJyoCPFG6WWcljqbHUZ8
+J17e7BGG9is3jbHBSOBFxqlABH0tH88h/dMzfjuUTXw1WIiTHwDc3lEXAo1R0AFA
+DV3FvYmxqvsscO7jxHaecVSoxjyzX/hKFKa5SaSJq6+2UR1Aun0H0I+pks/VOnIw
+5Lmg1DXUHf4OSo5Xl4X53qud8/m2R6f6CD6kNBci2L/CX8rs+XorgQUFapCXliYa
+tG/KQSgdWKV5CqJcrxBOVNcGzBLIA2d2QX26Mr9UcUaOsJGgKYbFdsi6edPGJHGY
+vpziZbkldPU2NZ1QyScdFrA3ksiFIT/9sddvfE5lW+L5kmdL1cAURQ8kPsyGWQoE
+z3YjZIIJ1q6iIfsdPBMyEQsdF2t6ZkOoNo5XZYpamtd/364IF1SD+F6QBBHjTrDW
+6Oa2s5FcxL+usvHg/H/lMCpoyoK30UDJpQWCL+x2VEE9cuLKFDekBdlmO8shmv71
+Uf5PQiu2nhbOPYEjByLqSTJYvoq9zhHR+/rGmnQ5Hwf3lb6f3WXd4XKW7H0jQOwa
+SXwSCp7nLEZLPfg57RhiS2xBnZcTfHmoqycNdPV89Bh+bfILHt9wllKKPDn6zj6t
+k0DbWYAtXZb3ay4RYDu2LGywaOac/sHnoQqjqWLjlVlEqe8p+cQ=
+=rqO5
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.0.6.pom.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.pom.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.pom.md5 Mon Aug  5 08:49:12 
2019
@@ -0,0 +1 @@
+674f08fbf10a750ddf945f9ae8c210c8
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.0.6.pom.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.0.6.pom.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.0.6.pom.sha1 Mon Aug  5 08:49:12 
2019
@@ -0,0 +1 @@
+87c4c4287f1b64a52af349652c527b259c98471a
\ No newline at end of file

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

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

Added: release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.asc
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.asc (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.asc Mon Aug  5 
08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BW+QACgkQ3f1PYfJP
+DZ9TYg//Tb1KG28z9C6MYxFrBdy+uBu7IklGayMzPZx2eAg7F5HQpSVsPbmLmOO8
+ywKOpjgHYYUk133hK4bUUpow6ML6T8fL4icxyTLXAhonurombTwjygxqIVLBk4qv
+Na/gN+Z0o4X+PLDX4qHjHD63kkEnJtctIxWyLr1RUYjNj4J5rtIPnmHMwbveU4fk
+twHqmpj77hiOe1kVm71CJn6F5HXgT4yMbW/X0/cdkscHb7NRp4HiPqX7GhAuTJwu
+wlc3kUw70I/LY7w5oPgGuiJA7Ypr7mn7+nHIX3moiCZStlWLTVZqqoCCgV1bTV3k
+ALM/WEKxmnSYT5ZyUeUchLNREdWtDrn1AL3NFBNjStBZGqFPI8Yw3afEP0Vzc9tA
+jFYx0eP24xWatKDB9hSYVVUxM0OI3ngCFWymUTLhIcfIDuDqU/aF+YT3NavRxOOB
+ij666X/BG5a9ob5QXX91N+LYdeOqsbY884WYml0bHYFlewhFebyUNR66KQx4woBN
+MHhCtDshW7NAL+so7KZ1PIoDKi4PjqrHqdQn76QqKG5hTKirM8nBtXj+TxNltnLQ
+1F6SlVi8q5Au5bRHpDZ6DzpbPWcnQaaRxAorfHP9GkNqh5qmbW+1Jq18BUaiRPF5
+GUD3rCmsBOlp6NMxDfXiQ0zuB5T3bnqrjKZHVaMdbv3yzGEj9JY=
+=edQN
+-----END PGP SIGNATURE-----

Added: release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.md5
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.md5 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.md5 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+c436742f27ebe11ba0e67b7ba94ab2c1
\ No newline at end of file

Added: release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.sha1
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.sha1 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-javadoc.jar.sha1 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+c960e6a7c69faeb7a8a26f4597866a7b803e97fe
\ No newline at end of file

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

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

Added: release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.asc
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.asc (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.asc Mon Aug  
5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BW+MACgkQ3f1PYfJP
+DZ9lqw/+JLDxR7d7hBIClsgBJ+Zm7ueUgQ2UBlermi2T34qkPz5JrHWgDe7gXSMN
+e24fG5+OLeyEVboglK7tspbHn1d5DwbZezmAzw3tZvg++WJyCzceOFOcwv4ff3sd
+nRs1PeUXYibnoPMkaC/Sqzb6m2t4ihTjHBOM5PZk/Q7BsDaGFWp9y/4BEPbWfQ/j
+PKd8x74WOXt4zlrJzCU3fNluglaSkOm6OwuLdfNJWLV+z8lfS+ZwZI6Ai38HSL85
+MyRYxoMJVc8549FUXSAOlbqRW1cLI0KhBSwC+9NFvx7R2S8y9WuefQt40+Yi4VYq
+nk/bddrNFiwzvChJnsjN9zXdDZOcRGsEk9o8Bu9K9I4ebQpNmix+tb7v63/g6OxP
+FGj55YPG1K80/QUidf4KHDVOeJfFmfixs+o099o712YPydyU1f33Z3U/6G9hcEet
+azbTxnI2dvUVkpIWiinLA2ggKGJHmfFSpzljqfKDCEKuS4jGHjvjiB/Nlwc+SWKa
+U6W7R+SDu7oSPtD+FWh36xePg0Il53As1CsUmEOx27LU0AsvqInukJosNn1Z16ef
+Qy/5jaV9nZ6Q8M/6Ke+0kDiSDJJ9i7UKGxbacuGy/1dAYXZGhFmkVe5ux2Kb1Ubd
+aoZAUnMkCkMdytFuEM7G4qThjgdXgClabt+S13Nl7O2fl++uL+o=
+=JFbd
+-----END PGP SIGNATURE-----

Added: release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.md5
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.md5 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.md5 Mon Aug  
5 08:49:12 2019
@@ -0,0 +1 @@
+338a1eb89c079cad1a13fc69f2c8ccf6
\ No newline at end of file

Added: release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.sha1
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.sha1 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-source-release.zip.sha1 Mon Aug 
 5 08:49:12 2019
@@ -0,0 +1 @@
+fb54dd98635928d799da715c60125a2e06483a22
\ No newline at end of file

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

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

Added: release/sling/slingstart-maven-plugin-1.8.6-sources.jar.asc
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-sources.jar.asc (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-sources.jar.asc Mon Aug  5 
08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BW+MACgkQ3f1PYfJP
+DZ/bkg//XZ1F579cdT2LKVc44KX0wyHptRBvq3s1rmy6YRL3oCN2oAkrCsvGZZdC
+vesUFKCW4eUtQp5JA/LYd6C9dK6TEZlKtags45LHpfY1tj8k5G+DAcyFKOmTyu30
+16tBkGG+LIHHau/dvaXCiK0iF9Lxn0SRelFmqQxrP6F0QbwOWOubwcLWQkGYnNtQ
+wiKkCAHNgWp1KvK6cjJ0+lR8CfNXzk6yeE0wSiJYWbI82syNV4UsGyegFcwnhnyb
+tJWu6F0AvQ029i7SBMRR2ifr20vXGql1qQSydsm+v18XLXc+xA8g/dNqkzQNCPLW
+UE0aeqW0wx4tDSgBaTq9sc/3GQv8DSEMqU4UgmGS3g+FIqWZmugINFSX+YbTyCmT
+P29v9anx3QHhw2Yizqcz3HrhFRv7XUFENDBFQCgZs8AZA8amO5yPzyQxm0NNJLkv
+pzz8gB4eOfBht/zWiqscY4Y7JjN4QjGqmAxScRvHa92JZyp6sjePJRtSVppeBxtm
+ypBR+8a+Y1SqGnkKSRZeLZB+5yFWhwTGpvDvQgDsRA/y+N6iG+AbjVtr5o2InW4m
+2ZPmT+oCi0lFYfH3+mspHHXGTfwbao6SHkyjBjBL1thcq98REAzlTQjWf4Y1COtj
+PKX3990vwQ2fQUjiIen2hP1o3cIp9K6fxsqjmYw4jHVCf/fnw9Q=
+=PVpV
+-----END PGP SIGNATURE-----

Added: release/sling/slingstart-maven-plugin-1.8.6-sources.jar.md5
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-sources.jar.md5 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-sources.jar.md5 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+c882fa9466422446fe8ea2c3278d179d
\ No newline at end of file

Added: release/sling/slingstart-maven-plugin-1.8.6-sources.jar.sha1
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6-sources.jar.sha1 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6-sources.jar.sha1 Mon Aug  5 
08:49:12 2019
@@ -0,0 +1 @@
+153bb9c16ac0b451860dd7f483671f4f20976d53
\ No newline at end of file

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

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

Added: release/sling/slingstart-maven-plugin-1.8.6.jar.asc
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.jar.asc (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.jar.asc Mon Aug  5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BW+MACgkQ3f1PYfJP
+DZ9Z/Q//bj2ZXtntob5hi1PjNtvmhT2Q6ei5T9wUm59mAS27Ej0w7d1PVDXQNJg1
+5N6E0iTMgb3cSSEa2haQue01KxK376OEOccMdHvdEg0kw0v45sTR1Bl8jStReZve
+I727vRUvixAEnzVqfme0SLg4usyqQJHLbdJ8gQFe1HcGGqI+LT6WnoBs59Z/qJ6+
+fQyJBmh0edFgl4UheBaYGWaCDfKRy3oyXhAxlNGUHDW2fdfegPnDgszsKPObmYC+
+6nlr8yu35K96TpfXD7jwgFOWu4cP0gEZgspN1O1FtVO9P4xQ0oqx1jIArleRRGCf
+b/nWGlKzBfzRdbnXu3eIiwQVLQYtyZoH1JSdzLt/5t0HrGt1xFG+knP+OXsXFFiD
+4OHovpmHKHgXn9V9yt9LFnKx+7OYavQ3bB0y8DDRZHd/wJWsSpT0O5eNnDPcqsCS
+bJOTt1nztWieEqS8fA0SRLnYwiZ8gzw1ycyNsY2XsEdhes7S/nfhCQZtJVLthx7w
+jXEJ7WAQTs42B3r9+itHep2JwWPdxxpHKnABSZzlREYai3WCPRkE5LZcpmO6yG6L
+uhnQo0h3gvULrXanS8KputhJQnSlL20qxWw/FggW1d6asUzG8WOq6XbiWW5K3eeN
+dg/sv379VfQCdn3x/xSxnvY4gHsFyNOibd2FNLyDkcpvkY91XmU=
+=pb/x
+-----END PGP SIGNATURE-----

Added: release/sling/slingstart-maven-plugin-1.8.6.jar.md5
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.jar.md5 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.jar.md5 Mon Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+714ba4c285c54193725872787d4259cc
\ No newline at end of file

Added: release/sling/slingstart-maven-plugin-1.8.6.jar.sha1
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.jar.sha1 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.jar.sha1 Mon Aug  5 08:49:12 
2019
@@ -0,0 +1 @@
+d50a4559557e2d76d00fc4043719c8f383f3e133
\ No newline at end of file

Added: release/sling/slingstart-maven-plugin-1.8.6.pom
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.pom (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.pom Mon Aug  5 08:49:12 2019
@@ -0,0 +1,334 @@
+<?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>32</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>slingstart-maven-plugin</artifactId>
+    <version>1.8.6</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling SlingStart Maven Plugin</name>
+    <description>
+        Maven Plugin supporting Sling Launchpad
+    </description>
+    <url>https://sling.apache.org/components/slingstart-maven-plugin/</url>
+
+    <properties>
+        <maven.version>3.0.5</maven.version>
+        
<maven.site.path>${project.artifactId}-archives/${project.artifactId}-LATEST</maven.site.path>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <scm>
+        
<connection>scm:git:https://gitbox.apache.org/repos/asf/sling-slingstart-maven-plugin.git</connection>
+        
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-slingstart-maven-plugin.git</developerConnection>
+        
<url>https://gitbox.apache.org/repos/asf?p=sling-slingstart-maven-plugin.git</url>
+       <tag>slingstart-maven-plugin-1.8.6</tag>
+    </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-enforcer-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>enforce-java</id>
+                        <goals>
+                            <goal>enforce</goal>
+                        </goals>
+                        <configuration>
+                            <rules>
+                                <requireJavaVersion>
+                                    <message>${project.name} must be compiled 
with Java 1.8 or higher.</message>
+                                    
<version>1.${sling.java.version}.0</version>
+                                </requireJavaVersion>
+                            </rules>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <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/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <!-- for https://issues.apache.org/jira/browse/SUREFIRE-1067 
-->
+                <version>2.20.1</version>
+            </plugin>
+            <plugin>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <!-- for https://issues.apache.org/jira/browse/SUREFIRE-855 -->
+                <version>2.20.1</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>integration-test</goal>
+                            <goal>verify</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <systemPropertyVariables>
+                        <project.version>${project.version}</project.version>
+                    </systemPropertyVariables>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.provisioning.model</artifactId>
+            <version>1.8.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.0.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.analyser</artifactId>
+            <version>1.0.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.modelconverter</artifactId>
+            <version>1.0.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.io</artifactId>
+            <version>1.0.6</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.plugin-tools</groupId>
+            <artifactId>maven-plugin-annotations</artifactId>
+            <version>3.4</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>
+        <!-- We use a class from the config admin implementation to read 
config files -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configadmin</artifactId>
+            <version>1.8.10</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.converter</artifactId>
+            <version>1.0.8</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configurator</artifactId>
+            <version>1.0.10</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.johnzon</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-archiver</artifactId>
+            <version>2.4.4</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.codehaus.plexus</groupId>
+                    <artifactId>plexus-container-default</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.codehaus.plexus</groupId>
+                    <artifactId>plexus-component-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-utils</artifactId>
+            <version>3.0.17</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven.shared</groupId>
+            <artifactId>maven-filtering</artifactId>
+            <version>1.2</version>
+            <exclusions>
+                <exclusion>
+                    <artifactId>maven-project</artifactId>
+                    <groupId>org.apache.maven</groupId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>1.10.19</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- The following artifacts are purely used by the unit tests
+            so these dependencies ensures that they are in the .m2 directory 
prior to executing the tests.
+            Whenever you modify these, you must also modify the references in 
org.apache.sling.maven.slingstart.PreparePackageMojoTest! -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.classloader</artifactId>
+            <version>1.3.2</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.contentdetection</artifactId>
+            <version>1.0.2</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.mime</artifactId>
+            <version>2.1.8</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.threads</artifactId>
+            <version>3.2.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>

Added: release/sling/slingstart-maven-plugin-1.8.6.pom.asc
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.pom.asc (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.pom.asc Mon Aug  5 08:49:12 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl1BW+MACgkQ3f1PYfJP
+DZ/9DA//Ul0LIXQM1ZfqGr7jPQxCwPZM0SuLpUfiN73QqI62/Pm7SlRr/jRCd9+k
+PsKoekvbRC/a5z2C9vkf2vpsy/NxSfGNJl3fnIO1gS/BfHz8d5X5Sb7qtjaCS9Mx
+KgMlrCFHYUx6zE4eBEDgcuHOTpbD1IpbQJldnijdOJPRmz6GI0Ss6ZPjKqxF+FYW
+Yo1DNQikU1ypbe6cFqvjB+zEdNz10VfTOFbZmZI+VUMirkX9OCr8nN4BHyMbLBko
+Qw/fDB1F1jQDfCAkYxYY/0RE7NkyRLUPLHEvfp8QuzU64TLt1c0Kjhs9i828cuRW
+L2IalOiNN3mnkN+/jSXYrBFxMijEJUQsRcnyhJomec9N+1n+253PCbrcGLMPiw+B
+Dm/X6c17oI9hZoAaBiaOnF7LTpjv/J8FwDggZmg1NcSxHQyrS9MJJrW689StmV7A
+TMxTJ9Ho3qlakknSAij8gZLEbkmxOrWjkdQLlvRel2dqH2TJY0pUmf1h3LH8T/zI
+k+r/otCggSbCfAPyyAF3ho9L1ZkjY92qUcNW4Q3YsZJAVBIXcPqVDjx6gAO7i84X
+Y7/T03DiImB9A6Cvszp65TRLR0hbnYilTFQqntX+KnQbuB1GEqicZLtIZ07XOwWt
+2lNHPUq5wxponrLmGEMiJg4sn5Z76MBOyFCDJdPhuTKPJzhmwCs=
+=j6Qs
+-----END PGP SIGNATURE-----

Added: release/sling/slingstart-maven-plugin-1.8.6.pom.md5
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.pom.md5 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.pom.md5 Mon Aug  5 08:49:12 2019
@@ -0,0 +1 @@
+d5713a5b511a82a838741cb86e53f4fb
\ No newline at end of file

Added: release/sling/slingstart-maven-plugin-1.8.6.pom.sha1
==============================================================================
--- release/sling/slingstart-maven-plugin-1.8.6.pom.sha1 (added)
+++ release/sling/slingstart-maven-plugin-1.8.6.pom.sha1 Mon Aug  5 08:49:12 
2019
@@ -0,0 +1 @@
+1432786f5efa937cf556932991f4811283c7c984
\ No newline at end of file


Reply via email to