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 2020/11/16 15:42:29 UTC

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

Added: release/sling/org.apache.sling.feature.extension.content-1.0.8.pom
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.8.pom (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.8.pom Mon Nov 16 15:42:28 2020
@@ -0,0 +1,149 @@
+<?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>40</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.8</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.8</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.2.14</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.feature.launcher</artifactId>
+      <version>1.1.10</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>
+    <surefire.plugin.version>3.0.0-M3</surefire.plugin.version>
+    <jdk.version>8</jdk.version>
+  </properties>
+</project>

Added: release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.asc
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.asc (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+ukUcACgkQ3f1PYfJP
+DZ9NJA/9F/p4gGFvRRlFBMNs0Guc2/TgI+NWyzbRDPV06XfxQyz/Q938dlcST8Lu
+kIXFIaGUCht4z+tmEp94yeE7eT755HMGfX+TdxGKd3ftVPpK7v1aYKofQ68PjPuQ
+XZhGJOvA8x8nc7jB9QNn11e7ZnjUJcuorwzuVuoaqT6KtyFLEvxfmd1gYW/IohJz
+Fn5oUmAL+1dWXIAGvJ/cdrSv/LG/VSRk1+hj4ni9DYdByOgtOeUL8kieCfB5W4qR
+z0LjzFzuNSyOfhNFL05O3xoAKnD1iWy52NHIGD3hoJUkjJb5fLloM0P4dCk04+v9
+ZmKfO7JW8dThWMpu/8vxl3Yv8sVU5MBj+xiOB7qoYCaZFyGkqGA4P70XBLERx6mz
+WM39ELl4PUDftqtzw90ifywGjEOPnHIsrnG7MbRdDAQrP50QKAr4qZC6zFXJQRnE
+OCqENbNHvVTFhj3WQJ28vQsR2aCOYBuR6lhMjQ/wStQuBMcXlUs62Dys48olcTeu
+a5DeNH2Y560IYUd7Oy3+Me4Ek096d3vLR99dimALyFI0WQG9RyI300Sq4UAOp0Nt
+DD+lDWuzvm42y1p3z++ZFbnVCYKQB33faBbYcMTGchjQ6NBPb5mNoQhy+tvobyjE
++S7fgdo31X7fzFpLPuBIe7Lslhc4yL/GlVy6KNdYD/HeJlCQG2c=
+=v5ik
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.md5
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.md5 (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+b85222c996f077249d9997026e38f4a6
\ No newline at end of file

Added: release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.sha1 (added)
+++ release/sling/org.apache.sling.feature.extension.content-1.0.8.pom.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+24f6d2505ae06673dffae5867bf1bb40c62b0e90
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.asc
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.asc (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un5YACgkQ3f1PYfJP
+DZ+UFw/9EtIfE4YhnDuNXLpsUodADk0PP3ACXU2iEF1I5MQumdIvV6+A83fVJY+y
+lnFiV68zelu7iNBQRSRXFpl1oT+l1sufo7M4+njoBDS9FVzieSlAnHEMbYdXycru
+QLC5Tv9irCiG1C9jcr2dLZEDuc53eCxqDK7EXq+G83zI9SgyxtcgohpNbpIzS7VV
+66RQa99glU5SVOEQEdzXDag2J05z++GzRYOxMksWDoMpYXZrh+PEg6QB0JF/3IkY
+4mkl/iK/Sj3NRBaXBD1R5GWAxlbgnn9TNXSCiqwTEeGGhD+4iAOlEJgOYJbbVqVa
+OpquCu99lcb8EKXaAJHaMosZKVF1Pv1tlY4iE1abZcUgEok7S2gZ/U0Uz5dRD9C+
+OWEQzxYmW80a7xPT/iZBh5EL/9zD56dJbKT354nq3gBZkLtT6WdRgcEE+jXx9CaM
+jLv8TMAMG+/DOz1R61aXWdlMWsir/DYNLmZ5GvCvR5p0WgHEDEvF2C8+yKjv4jcq
+AH5qxIsT4VvB/iMN89ws+C7gi4SFrq8I/+3vrVhGFO5jW/JdD1KOMZU1lf7csL8c
+6FxwGhWrBo4B+ngXzWnIXzPAyVlqldCnAN3vno38/fZ5dr/9QhUVYbRFaQX1Q8IZ
+GZjAxbihVsB3JDst8b4Yz9jI42wiD8lyWWHVUgCLVsFmWbr8MHE=
+=kB+o
+-----END PGP SIGNATURE-----

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.md5
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.md5 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+3aa32e8d4900739ed6e70befb0318f04
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.sha1
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.sha1 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-javadoc.jar.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+ee1f3e973cadc10de188a0481b28273a60b3704b
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.asc
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.asc (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un5UACgkQ3f1PYfJP
+DZ9JLA//Un0CZagjfIpRvJEkDfORvCiwrENoOArEmt7Qr0hunk6yR2FP9SfeEcXn
+PR+Lk7pfbbOzKpN1iOHYrkaXx0PJIC9h2F6/tzLo/+j0DdZOsvS97OKGZnWtMSa3
+JIr5raRxS1KCJTCRszpzPJMVRPoVnlgyQhjLl57uwrI8zF1m3JFRCI2MMR7JAyBz
+ZSTcTSLuDQmkXekHf9NLEDdw+LPGFJ1RBoq1HCEK+L97wIiEMuqtAGVuVTqtYci4
+HzdM+VEV5Mnknvr6q2vjsBoVSnrpRrhlNNe+U+NIN1oywN8fmFYsl7w0fueX3wH9
+3gDmSda9hrj8yG5YLYD02SwyqJZqtuOWu4cvakoDivH8JapvQDVVikY8j4SuK1zc
+Ak7sBV9GcpjuJ3AZ1+91yOvZyisiMhXjpQzvmWw8pxUZy04ZAcX8Lm8lrHN3UUl+
+c6Vr7nYH0NhkYhUkAdsD/TvW91PVNukAaG9jSXr8n1jfBW4gWTXRZ99HCHdb+Ial
+pdpToVXlq07pW39cagVsRPFkNdbz8/rrZjOtS9JTHFewCg3nC1iYGgsWJ2eBRZjJ
+qKD3vISeiD809wLMgAtX1tTN37je3goE4dNFaLN98Vp0UbaqTq8DYapdonMB25gY
+kGylRfMkAvx0WL+W2ykIpe74OuWL2Cl+C8tB3Ww2ndJigtmQ020=
+=yofN
+-----END PGP SIGNATURE-----

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.md5
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.md5 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+4748fe5f90b012465bfb96cdeda28c3e
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.sha1
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.sha1 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-source-release.zip.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+a83de8f95bc6d7dd85e8ee21cc7e1929fdc0a714
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.asc
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.asc (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un5YACgkQ3f1PYfJP
+DZ81yw/+LoZ369kUkpeGz4ETyO7ByI8wdC3uylfY+iigxLxBOY71y8K7rBFTvUG+
+6nM1LyVuEAlTQy2FaWXAdCAOh0wSav6rRC82bJ7OlPw529AaoIIGgHUm/F0b8bIT
+JosLNgvYvrkzGJnPaR1gvHO1N6cMuLTh2XlK6oVBS8B29qZihY4tFMYcZWFmq0wu
+273daExLqLo8CzhNrEcBMlAbqwdEZWF8BghobVSB4U8WKmF78tvXWX8E8atFLoBl
++ZI6YAzIY2V3NCysAoHGHNV2rMMwgh5pR82CeI0GNMpJIs026v4o2zcGl6sZ7RHq
+aGdzzNzxivelfTzdW7JVZpIr4jKJVq5zOwpTkE7xtuOQ0P4Xg5NLDTzIuG0HcPF3
+d4mBF35FVSrDYp4FZaTemrRUl9on+szU1Q+ypY6/3UihcNQOtN+WDgrWWktpKnA7
+EOdQiWbdqur/+HnVxpTnCZxbl6hdJCt1wTae7HaR4XCnRNFr7ea6rULF5hIBtli3
+gd4iotQxPsUHWQZpCo5A/HFW/ng7Nyr5Nx1g3gj/J4EMYl/6KaqTpsj7VVPqzq1R
+gcOKS7I9MNxgLtPR3T4hObdlm0OU4ik4zaBeMz4n9avYIpJ7iqchox6IwJ45RqNY
+IjgOhAeesWcn90CZXETFVQm93aisnF50W0AnKCsRq0MCcPnGOFg=
+=39q2
+-----END PGP SIGNATURE-----

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.md5
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.md5 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+602fedc0696a68a6baaca9bcd75c8175
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.sha1
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.sha1 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8-sources.jar.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+42ecdf4f2d8b531de1b7df93f0541e3b62e73d88
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/sling-feature-converter-maven-plugin-1.0.8.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.asc
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.asc (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un5UACgkQ3f1PYfJP
+DZ9N2BAAkV7BwLNwJXpW2hviTPkh9W/XuKzEAp6bx3yp5Puhu73NLJwIfTKnPI8+
+LAsKosPAHcAELhXeCzvnsqeLyS042TBagJnZvizxKGzEF5gMmdXR9Scn9cm1XXUf
+nxaE0lGx2wn47LDGAg+p/7KFX9FCPJsgBKPNVANqtI1BNwjga5BaFLHCMBSXwEsJ
+4YXadTk3D9e+qp/9GbWEhzGc0L3m6ONeH+kapG8N2sIk5poaaNmfSDeHLAIWv+7G
+Frab65QOVlBcYiSCCWTE/KJJqACr/BU52kRk4Tfv++HgIBDUe82zXiby1qjeY2fn
+lMnXkYteGvOD8eykRCjmo8tHiIEvjAiy/PoSkUhkVCk+Di/HKIdMA0NvnNd71c+e
+SdO8aUeHDLIGICqCZ5AMaayHCRaFuhtBnjioKOEmxO856+XJJOYBOmli7VqRl9Q0
++4FPk3Ulq7Nao8F4b5dehJKetUuHBplnqIPp4N2mXfaPCGGwQzKqUMH5L07vib/g
+Ikx6AiI23qZRWMUAbTikEfpRCOFPrvMBTSJCgd5Ph6WePY0wYVEWh0jfhT1DDK/q
+Raj2OQZqClfuGPBjXBGFhpXjQRC5EUDud097gjYspCFPSN5m1b5z5SaxrSlGsFXJ
+SodlhjobtWECb/9YmsvjuC1Mt6u+2eK2MhGlvlduDJ/soHnA760=
+=OGUU
+-----END PGP SIGNATURE-----

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.md5
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.md5 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+0ec9c7f8998b3099653ab8762bb64ffc
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.sha1
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.sha1 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.jar.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+13e3028ee571c3210b9c602a002f4b2b7974593d
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.pom
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.pom (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.pom Mon Nov 16 15:42:28 2020
@@ -0,0 +1,265 @@
+<?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>40</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>sling-feature-converter-maven-plugin</artifactId>
+    <version>1.0.8</version>
+    <packaging>maven-plugin</packaging>
+
+    <name>Apache Sling Feature Model Converter Plugin</name>
+    <description>
+        Maven Plugin to convert Configurations / Packages to Feature Model format
+    </description>
+    <url>https://sling.apache.org/components/sling-feature-converter-maven-plugin/</url>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-feature-converter-maven-plugin.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-feature-converter-maven-plugin.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-feature-converter-maven-plugin.git</url>
+        <tag>sling-feature-converter-maven-plugin-1.0.8</tag>
+    </scm>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+        <plexus-component-metadata.version>1.7.1</plexus-component-metadata.version>
+        <jackrabbit-spi-commons.version>2.18.4</jackrabbit-spi-commons.version>
+        <jackrabbit-api.version>2.18.4</jackrabbit-api.version>
+        <javax.json.version>1.0.4</javax.json.version>
+        <org.apache.jackrabbit.vault.version>3.2.8</org.apache.jackrabbit.vault.version>
+        <maven.version>3.5.0</maven.version>
+        <maven.scm.version>1.11.1</maven.scm.version>
+        <maven-artifact-transfer.version>0.11.0</maven-artifact-transfer.version>
+        <maven-plugin-annotations.version>3.5</maven-plugin-annotations.version>
+        <plexus-archiver.version>3.5</plexus-archiver.version>
+        <mockito-all.version>1.10.19</mockito-all.version>
+        <maven.site.path>${project.artifactId}-archives/${project.artifactId}-LATEST</maven.site.path>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-component-metadata</artifactId>
+                <version>${plexus-component-metadata.version}</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>
+                <version>3.2.1</version>
+                <configuration>
+                    <debug>true</debug>
+                    <projectsDirectory>src/it</projectsDirectory>
+                    <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+                    <pomIncludes>
+                        <pomInclude>*/pom.xml</pomInclude>
+                    </pomIncludes>
+                    <postBuildHookScript>verify</postBuildHookScript>
+                    <scriptVariables>
+                        <plugin.group>${project.groupId}</plugin.group>
+                        <!-- The version of the test version which should match the plugin version but maybe off during a release -->
+                        <plugin.version>1.0.2</plugin.version>
+                    </scriptVariables>
+                    <localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
+                </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>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-spi-commons</artifactId>
+            <version>${jackrabbit-spi-commons.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.utils</artifactId>
+            <version>1.11.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.cpconverter</artifactId>
+            <version>1.0.18</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.modelconverter</artifactId>
+            <version>1.0.14</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.2.14</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.provisioning.model</artifactId>
+            <version>1.8.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-api</artifactId>
+            <version>${jackrabbit-api.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.glassfish</groupId>
+            <artifactId>javax.json</artifactId>
+            <version>${javax.json.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit.vault</groupId>
+            <artifactId>org.apache.jackrabbit.vault</artifactId>
+            <version>${org.apache.jackrabbit.vault.version}</version>
+            <scope>runtime</scope>
+        </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.shared</groupId>
+            <artifactId>maven-artifact-transfer</artifactId>
+            <version>${maven-artifact-transfer.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>${maven-plugin-annotations.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-archiver</artifactId>
+            <version>${plexus-archiver.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.google.code.findbugs</groupId>
+            <artifactId>jsr305</artifactId>
+            <version>3.0.2</version>
+        </dependency>
+
+        <!-- testing -->
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>${mockito-all.version}</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/sling-feature-converter-maven-plugin-1.0.8.pom.asc
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.asc (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un5UACgkQ3f1PYfJP
+DZ9Vlw//cxNPUD24z3hBuJWFRy2VNOH81mUOf/X8vBVuuv//5kumqSIz6sv9pQaM
+YZN0B/5zMooUPrxxQzGMhVSwiOBZlyMzZAfT3J7GM9gZDePYPIWX7MhcCZNAIUEu
+ZdiEEspx6n6lt8doMQsS/w5Bv3wWxNd3FdLl6e8WOpE5J7GvVIQ10lyZXR/bjvd+
+0WAgmqA2St6gdrTfmk/rG5ot064+0SkiwTXFQcPvW8LFkuU7aGP7vwXq4623Cjji
+DPIP2B5yHhwW5DsXFi+XFAGHAKF44K3GIOxchpj3wZ3uSqJUTEhAUR8PLKHWAcRQ
+jr867FuyafydMBEpzfM3FHPITiSInOSm8YgQNQTkx1gvXayTnlTpmmecYwAdcmGz
+A6y//kcdPHXj+XqXVF78YKSUAkT5I3isW6+pRfNQoueUwbYjkdXYP3ABAgv5i3iu
+KOORz5D4fz4/5WMweKCk9Dk4E7cVoaS7pDK80pYt67whixtem57g/4lk68fdEEIa
+ZZ/aQiR7MvAuYG+JExK4Lf86hNScisxe1p6FFzBoFO9OeePM3hyxGRj7EIjQotY6
+fy69potLJL9rz8sS7y2QBXj8mW85ZDOwHNaZIVyiBdG9R4IUEsGdEIQdcz0OM5fp
+iexeGmviajmedtiZKfnBxLjB55J9vxb/AthZclIklsJeYjZduEc=
+=dmFh
+-----END PGP SIGNATURE-----

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.md5
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.md5 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+6c59f46d00bdc24e3bfac649e85b9c8b
\ No newline at end of file

Added: release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.sha1
==============================================================================
--- release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.sha1 (added)
+++ release/sling/sling-feature-converter-maven-plugin-1.0.8.pom.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+e06f5da354e5a53fd30fa3122459b2259e83ba6e
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un0kACgkQ3f1PYfJP
+DZ8JQg/+M3rE8WC5pzLxRRcIfDmfZWWyPA6kvW474U89gm7Vikj0GaPPkHLX1fgm
+tLWtepBRqo5xIu5Ap2G5a8jY66SNdlSRozNtPjFPGYplj0qaZq9jcizcLcQRhhOg
+1nXmMtA2hy1QwdgdLjh4scA+BFh1oW7rF/HWK3JPzATXPMEta/ixN0moQSfxMADM
+OJvUkRRD8DUVC/VlzJgG2S3m3v/9U4CakgRr4HoVpZYCvh6PMBZTUER+VMyLg4rY
+bAGYLWA3IP51YYnuMLb5Zwa+CAu7IWCd5qtAgeXQc3hfQe6pfztUbxQM4edG0qaa
+DEO5XYaDnuDBBchDyygBfg2tWNxQORxnVBPRSpK0S+wWtDyJQKljJZCSb3xF7PX7
+4JDzn6+14JjGac/Dt0EWoDAPZHnRquNAvc2O8vSAw9NWQkV9XhMKjKt0fi5NddEC
+XdHOUhhTimxr6kSt0BPlFHPwpcyH6v+rwNARE+upK1DKm0uSJO0poodIxvw+Dlka
+0YyDedd3W+2EALRSKeI6xnRa9uPQ1w+Ob6lfOBPGURmkx9oauagUi9Zg87gPM0SG
+Ca+gwZUozwkgCK1XxKvtOt6v/WXqinXOvs4bmQVVN/Am+2yq6lYgsni0Q0QooFLh
+J2IpeQjqGJGMZAAA2Q/A26o5yKrlOIS3BQpEfdPpGXV3FOymcpY=
+=jzuc
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+2e8c3bba8534ea219bb71c7b80c1a4af
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+551bfd163f7a1be584660ffee1b4f2857dcb7d8e
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha256
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha256 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha256 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+04caf0992a9ad072416b7a2cd7a155e43c0f025a7d7baafee316bcd4919cfa4e
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha512
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha512 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.asc.sha512 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+9aac6512d5dea29a6c71807825341637cf597a3ae036188be434826c899f15fb635d68c7ccfccb7ccdae661aa25612c05cfffe2f7ab78b7b0291b21d90493090
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+8b12eddb8a420ce9b79499cf25e53101
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-javadoc.jar.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+49bdefecfb3381858eed4e23aad7d56332636fc2
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un0kACgkQ3f1PYfJP
+DZ871BAApUCsMogrNzHnefWwhdH7X9pH5Ppi4wVJyxC9rOato/BitqBcXuK/yRfg
+k2amRAbzrevdW5v8uuLbV3tGJWvIaUec5jVIgTUHATlay34Lt5TgOq87EpzNgsb4
+ykcWN+J18bY4LaKt0LaxbeE2bPU00iWASuV5KZIXVIE94vVl+ImPmI234ieQWM0U
+wR1SVecrfvfhMukSa9iF1wIHKwowD0L18l9xBUquFAQzYcULnPBI62uuuMlSIm/Z
+eAQCnRKDp0t0h0eqWsrTfXsXNbewAersdD0GXa3i5LcJbDJv2JnoqHWnLSeUqMfP
+i7wwwG/sSel8m7ENo3M3J0wuiJ3f8wFm8ync6rOoFsiIwhqmZZZ/qDiVGzrsfDOl
+3rV8TUio0+JAfP9ymJW59tru+hj9Dxl4BmDdMbbfZlD5HZDezA/D18AIYhkHIuq+
+21CB9MnLRfddFRmcCsImOAOgb/nsKe/AhW9XlvyjUrS0HjQm/75EcI/lHdsk33sL
+fgdpx9hxbmvCxtDzDdJQkUALCLvkuFZ/kD5CSSULuQ8UNsaEhqb7qtmbC5A+Ot+L
+rFYwnGsL2rRVJSlldaqpZz24uApLx/GpDXjfN06JSm8xBrLTVkte+4fAsxKr79py
+AG0Lef1aCpPpaSU1X5HNxggGNGhLtz4wQ+D6dZJv9K0O6r8NNwM=
+=Bpbs
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+535236b7fdc85a309cbeb76c4fa7995e
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+bb0e236ef382baf234699d78fd9920941848824d
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha256
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha256 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha256 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+43c4d9565f8f906a219f460b47e82eea891f2a5fbd348e7a65f4d8125af2dd0f
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha512
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha512 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.asc.sha512 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+f4a8c3406f609668b71e6dd02f42df261d70930c28a392fcecf80a1249671ad01ea0d86f75c38e8b1a34edab82b751e2ad587930f20e4c48068e38c7701c6a98
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+526c23e6cbdcc7166ffa97e6be16ed4a
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-source-release.zip.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+05c578ab3e606a86d59e4f8d0fac03b80d2ed0ea
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un0kACgkQ3f1PYfJP
+DZ888A//dwVAXlL/nufFV5us+9PDEB+d9cvm4cvr2X3db2I938aithlEYLG91iR0
+dN105qOsHLhm/64hocuYys9jhLDc4XJuAFgDa9lj0/oRWILD32EMjLAERYFFQCrW
+8d7Wb5Hdbfwm5265neUHqdbYdkAISOyiDscgKPXjZWiXf9KpGzcgAshgx1u1+elv
+lgn9Rj27B/oWbrbh8DhmhqgWkcMLZb5++PwwZDIIIOGXP8q2IA+uYF2JYpDHIxTH
+/S89w5eNLjalmgzTbYSwPlBG/s1q8T7m40irp+xVirlQPKrv+8Jluz2JzzInW5D9
+ScnTDhpsnJnxph1xFBA4G6/PXYZmHIAWyuqjTvvvAx+D9RID3/YGv6sL6W7Xgk7j
+Xh8f9B+N+2WeMAhZxQ0P4JypYFSIctsCUKv5kVb//MfpP/wEZTQMO+ZYwytn455X
+26JUF2MbE53AFOIN+fhNnQQMCGIqRb1QiZCgDU12+ez0Q2+9SvotfFYwD2rbNSz3
+3S9XUxaGO1F6xyZG+QSFOvhWANl8dsUKSS+VrZoUSwwkCe2Lc43+rXQEazEGr/ts
+2OWka0YAkURQw2ZOnZyOytVCq6DGQezeKmf9MMwiqKVoTLnguOcE8Y0i6h0OMgNH
+vQUn8kPXc736CF6HAKm6rNoKdZC5i9u5fwV//UGPj0L6HHk9LKg=
+=CJqn
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+40708ba54bc35bcdf2342d8b231ee106
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+81bd228cd0f1dfbb8e18083434ed9b651a3a2b4b
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha256
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha256 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha256 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+b0a15823ac72e493ec9c45dcfa7044ca5dc1b65d6d563ab49efbdb22091bc062
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha512
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha512 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.asc.sha512 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+a0120442cabbb860731c195b648e04954d05d558a3da6567752053c7edbd771fc146a722fda01eba7da414abd10cc5a3fdecbfc64261d8aebf7fd94f688329ab
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+9738c179b91c004a859c88a21d3d58b1
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12-sources.jar.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+a183b34685e133cc6d4d417cd356defaa26f199d
\ No newline at end of file

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

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

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un0gACgkQ3f1PYfJP
+DZ+8og/9GWlHNcJAquw/1zH/Grmesue09OY2xlBtUAxyhGHwsyAGa0FH0+t0riP2
+WFRulhTkrhvVDMvptWQz4aue4cih6GbDbN3A9Yg3AVoHa04nKXfJQB63nGuPQBd/
+T6FdntB4fJqUPhxGWGmTc/SxLLnhsUfSG4I/Jgy+mthE9EdgknfpEFB/J0bZ12H0
+ZI4FttgQOxQglqi8hvblExH8GXAdZ2SVhQeihDw6eNPg/11zhP20VfaKKYT6f4DI
+wFDVNoRxiC0jQNIcVj7LOuTTTA7Ec94YWUaiKLzB8v05gCfhxOkU2tDhzILNKhUr
+8/QdvIslnyXtI+e7j0XekiUa72cXlyyHFXJ4eBVMMjPVbZubcLBSlLoStFnzVTGI
+EaoUeEltNWVcYbE+Ztqw2sT0i9OGXQH22YpbJoMUNqiJY+LusvMdEraX9YlBygBP
+X0ouTPdcTw/3e4dyILVdvwNgElm7Ct/+sF9/8qs2hZdBj8P/ds5GwvOHt4jed/ZM
+oZlgcPRx3dO6Zi1cAYXEnIy0VFlj6n2myIYAVvUk3eGyRxhPgzSNF9TG0fAlZb94
+vmDEAvw9ushvdTVk0EfbP/NBaBYlg8PbSwl6QcFTxpMpAaK3tV7FMA+7h4Dt+5+p
+GB5g4N+lj7LbzPQ6XbjpUzAM576W/9Ln7xSkxzr+BY9SgPrlAOM=
+=6Lm7
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+91a13927d0c44f0a29c66330b12450f1
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+8b3170904c55a03b530f31b106cb76572a44d902
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha256
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha256 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha256 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+f5f2f4b60e59ad9df1bed7290fe0841c066c1f318c1e57d2c04cc458b7ca0e1c
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha512
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha512 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.asc.sha512 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+749de03ad88766bffc0acad043994e3ba7bc6dd18e8b60f4babe5ed157267d17ab0f802412ffa8ddb64753915555c56c967a888b0d9432be4058c8b87e559558
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+560ab37210681c937bb638364ccc8290
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.jar.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.jar.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.jar.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+6a4624149523f77d422fd7e6b41a71458515cbbf
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom Mon Nov 16 15:42:28 2020
@@ -0,0 +1,361 @@
+<?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>40</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>slingfeature-maven-plugin</artifactId>
+    <version>1.4.12</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>
+        <maven-artifact-transfer.version>0.11.0</maven-artifact-transfer.version>
+    </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.4.12</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/**/*.xml</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>
+                    <settingsFile>src/it/settings.xml</settingsFile>
+                    <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>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-json_1.1_spec</artifactId>
+            <version>1.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <version>1.2.3</version>
+        </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.14</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.cm.json</artifactId>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.util.function</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature</artifactId>
+            <version>1.2.14</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.analyser</artifactId>
+            <version>1.3.12</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.feature.extension.apiregions</artifactId>
+            <version>1.1.12</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.repoinit.parser</artifactId>
+            <version>1.6.2</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.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</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>
+        <!-- for converting Maven to OSGi versions -->
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>biz.aQute.bndlib</artifactId>
+            <version>4.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.4</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.maven.shared</groupId>
+            <artifactId>maven-artifact-transfer</artifactId>
+            <version>${maven-artifact-transfer.version}</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>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <version>1.6.2</version>
+            <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/slingfeature-maven-plugin-1.4.12.pom.asc
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.asc (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.asc Mon Nov 16 15:42:28 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE6xvDHSN2Fhyp8Ax73f1PYfJPDZ8FAl+un0gACgkQ3f1PYfJP
+DZ8nWg//ZPIB1L+pdmTA8lIsf7n6YNIul31zc+Vk7PsCSvKrs1NRTbF1rVZXNtEI
+D12ejb+Z97BZA6SajuvHG9WPNP10wT1GaZpanggDVGuqrn/VKj51ngG+VZRPzUYh
+SURrAAoll62orR92x72Gi/ET1L87eBbBl3Lb/7e0j1c/mMoYcuvkIjv5qDT3SHUe
+W6T0o7uOPGHUk7115fAXobUok+uXRn98f//m0xbRa6y+mk+p43UKUUjhllkRnuWB
+0vOkebsDpAmEusyOdqfzSEszqLwzxfslg+K0mdlMhM4KR9fRE+OsUPPXIfFa+4ks
+eO2vjILBtriKFLgVqba9OeaDY3Ke644Pzw5I7hSRYgrJZph+G8cvnz9A24z18mNj
+lN3Ly3SZAJUizJyU2dgV4kFeGqTVjY+j2fK5pFLhdOFNcIZud7D0AXbpMNVnt5Za
+douDGqrvl+q/z46FefUvPf7hExygSUEj2J7Oa414/L9H5Zs1uaBfH1dGN5/jg9iJ
+/kAFJm7lu4HiCnmwLz7pi+NJCc4vMRnq9w8YLTN/7nJuru86TZehR7Jmtf01ghro
+erkTRwFhnUyxBVCL2WRACthLRbAun0tx4Fn/YChj6Gf7Y8gAXHaUy9FvuRaz6ocD
+GusSxlQiyFrtWuC6VVmH2CS+w1WdmGtmNZtUaKaQ5daOKFpeOts=
+=TkKQ
+-----END PGP SIGNATURE-----

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+1f8245295b4ce197b66b88d5984a1ab5
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+30e595cd949efd325596067e90349fb47cf7d333
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha256
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha256 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha256 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+9395dc57b16933cd45a076122119ebfc2749642f70ee3aed0b2632b038bbffb0
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha512
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha512 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.asc.sha512 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+c2738696c6898d496717e384d9238638be557ea7f251ee04d627e6b4605236885adc55b94cc33c0afb058e12de308629fb559f3bee8082abc63a9de36c35446f
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom.md5
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.md5 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.md5 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+aa477f4dec30c07f2098734b5d2914f2
\ No newline at end of file

Added: release/sling/slingfeature-maven-plugin-1.4.12.pom.sha1
==============================================================================
--- release/sling/slingfeature-maven-plugin-1.4.12.pom.sha1 (added)
+++ release/sling/slingfeature-maven-plugin-1.4.12.pom.sha1 Mon Nov 16 15:42:28 2020
@@ -0,0 +1 @@
+4ce6933c87906a5b9a59f16e582574219087b4c4
\ No newline at end of file