You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ro...@apache.org on 2020/05/28 18:41:25 UTC

svn commit: r39808 [2/2] - /release/aries/

Added: release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom Thu May 28 18:41:24 2020
@@ -0,0 +1,276 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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.aries</groupId>
+        <artifactId>parent</artifactId>
+        <version>2.1.0</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.aries.spifly</groupId>
+    <artifactId>org.apache.aries.spifly.static.bundle</artifactId>
+    <version>1.3.0</version>
+    <packaging>bundle</packaging>
+    <name>Apache Aries SPI Fly Static Weaving Bundle</name>
+    <description>
+        This bundle contains support classes used at runtime by bundles
+        woven using the static weaving done through the org.apache.aries.spifly.static
+        component.
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=aries.git;a=summary</url>
+        <tag>spifly-1.3.0</tag>
+    </scm>
+
+    <properties>
+        <maven.bundle.plugin.version>4.2.0</maven.bundle.plugin.version>
+        <bnd.version>5.0.1</bnd.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>5.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>aQute.libg</artifactId>
+            <version>${bnd.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>biz.aQute.bndlib</artifactId>
+            <version>${bnd.version}</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.framework</artifactId>
+            <version>6.0.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${maven.bundle.plugin.version}</version>
+                <configuration>
+                    <instructions>
+                        <Import-Package>
+                            !org.slf4j,
+                            *
+                        </Import-Package>
+                        <Export-Package>
+                            org.apache.aries.spifly.*;version=${project.version}
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.aries.spifly.staticbundle
+                        </Private-Package>
+                        <_conditionalpackage>
+                            aQute.bnd.header,
+                            aQute.bnd.stream,
+                            aQute.bnd.version,
+                            aQute.bnd.version.maven,
+                            aQute.lib.collections,
+                            aQute.lib.date,
+                            aQute.lib.exceptions,
+                            aQute.lib.io,
+                            aQute.lib.stringrover,
+                            aQute.lib.strings,
+                            aQute.libg.generics,
+                            aQute.libg.glob,
+                            aQute.libg.qtokens,
+                            aQute.service.reporter
+                        </_conditionalpackage>
+                        <_includeresource>
+                            @biz.aQute.bndlib-[0-9.]*.jar!/aQute/bnd/osgi/Instruction*.class,
+                            META-INF/LICENSE=LICENSE,
+                            META-INF/NOTICE=NOTICE,
+                        </_includeresource>
+                        <Bundle-Activator>org.apache.aries.spifly.staticbundle.StaticWeavingActivator</Bundle-Activator>
+                        <Provide-Capability>
+                            osgi.extender;osgi.extender=osgi.serviceloader.registrar;version:Version=1.0
+                        </Provide-Capability>
+                        <_fixupmessages>Export org.apache.aries.spifly,  has 1,  private references</_fixupmessages>
+                    </instructions>
+                </configuration>
+                <dependencies>
+                    <dependency>
+                        <groupId>biz.aQute.bnd</groupId>
+                        <artifactId>biz.aQute.bndlib</artifactId>
+                        <version>${bnd.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+            <plugin>
+                <groupId>biz.aQute.bnd</groupId>
+                <artifactId>bnd-baseline-maven-plugin</artifactId>
+                <version>${bnd.version}</version>
+                <configuration>
+                    <includeDistributionManagement>false</includeDistributionManagement>
+                    <fullReport>true</fullReport>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>baseline</id>
+                        <goals>
+                            <goal>baseline</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>biz.aQute.bnd</groupId>
+                <artifactId>bnd-resolver-maven-plugin</artifactId>
+                <version>${bnd.version}</version>
+                <configuration>
+                    <failOnChanges>false</failOnChanges>
+                    <scopes>
+                        <scope>compile</scope>
+                        <scope>runtime</scope>
+                        <scope>test</scope>
+                    </scopes>
+                    <bndruns>
+                        <bndrun>resolve.bndrun</bndrun>
+                    </bndruns>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>resolve</id>
+                        <goals>
+                            <goal>resolve</goal>
+                        </goals>
+                        <phase>package</phase>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.aries.versioning</groupId>
+                <artifactId>org.apache.aries.versioning.plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-dependency-plugin</artifactId>
+                        <version>3.1.1</version>
+                        <executions>
+                            <execution>
+                                <id>unpack</id>
+                                <phase>package</phase>
+                                <goals>
+                                  <goal>unpack</goal>
+                                </goals>
+                                <configuration>
+                                    <artifactItems>
+                                        <artifactItem>
+                                            <groupId>biz.aQute.bnd</groupId>
+                                            <artifactId>biz.aQute.bndlib</artifactId>
+                                            <version>${bnd.version}</version>
+                                            <type>jar</type>
+                                            <classifier>sources</classifier>
+                                            <overWrite>false</overWrite>
+                                            <outputDirectory>${project.build.directory}/upacksources/bndlib</outputDirectory>
+                                            <includes>
+                                                aQute/bnd/header/*.java,
+                                                aQute/bnd/stream/*.java,
+                                                aQute/bnd/version/*.java,
+                                                aQute/bnd/version/maven*.java,
+                                                aQute/lib/collections/*.java,
+                                                aQute/lib/date/*.java,
+                                                aQute/lib/exceptions/*.java,
+                                                aQute/lib/io/*.java,
+                                                aQute/lib/stringrover/*.java,
+                                                aQute/lib/strings/*.java,
+                                                aQute/libg/generics/*.java,
+                                                aQute/libg/glob/*.java,
+                                                aQute/libg/qtokens/*.java,
+                                                aQute/service/reporter/*.java
+                                            </includes>
+                                        </artifactItem>
+                                    </artifactItems>
+                                    <excludes>META-INF/**/*,META-INF</excludes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>build-helper-maven-plugin</artifactId>
+                        <version>3.0.0</version>
+                        <executions>
+                            <execution>
+                                <id>add-source</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>add-source</goal>
+                                </goals>
+                                <configuration>
+                                    <sources>
+                                        <source>${project.basedir}/../spi-fly-core/src/main/java/</source>
+                                        <source>${project.build.directory}/upacksources/bndlib</source>
+                                    </sources>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <artifactId>maven-source-plugin</artifactId>
+                    </plugin>
+                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <configuration>
+                            <excludePackageNames>aQute.*</excludePackageNames>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>

Added: release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4wsACgkQeumWDB+c
+ayWq+w/7Bzcu6vVd/hlDpZHIrEex7HIoQGDbcElo7w7ZVvIKS9QOHASUicfx0hER
+84RG1KcGowFDQ5d3f0Z5X9350P9jz05NwrvvpT/Ud5IzWMX9Fzzt0tYSHJhhmxPO
+g1n0VoH/R5iRFbbm7byxQFuCnp+7Tu8PbSZWPbtgoaKtbEd+UTn5EMuMBIihR0P7
+M7NWwlWv63rtWkJbxCXpKHyjvsQ2v+L3d61O73FYfOUWbr5OjikrJiJV5f/HHiUY
+AtlOrPHJVdPrmA+K0x1g0UU9qWBHNLaXdS1AlC+wkWhlvwn1340JNv+VIeBw2KAJ
+OUg9Zj8AA4apkB/YoCXknQyfTr3XGEdTLRtTzKjsgEVXxxd5jGZHHkzH3xp3p+Nr
+TSKq9ZWG40T0zaw/JS6k1+iJAxRHn6lxyhfFiwUli7/Oqs5ph/+s2mgmkjB+mq9F
+BnOQUb69hzUagXHz0WubucNdw4bhHdS3lyYr5llCsF9FlIBNNM/Z18smPRqfYj3E
+/Vyp2BHwITXbr8ANJCjdYUwmi3398kFSSMcSJQGPsGl6LTBOyS2DVxLJKUbxgvYl
+I4YBiSy5mTl/ncP/nhev9dxHpyaRddR0Mgl1jm2OTA3/DI3mxTHBq6s8fH9GIwtS
+OuyHqEfXnaEVYRmn3bftKAXxP2c+dd1zdX8+IgQtHOQWSEPI/f4=
+=poE2
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.3.0.pom.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+52ada9c6df77c0680c64fe8ffb2864a08fd88c6448208a1d5e8193f445fd9dca8bec185dc56b98f76e61e60d1eff95954b6479379dd4ef8ea7bf279cc8cd4f17
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4v8ACgkQeumWDB+c
+ayWPKA//bzL//Qt+HuQj7LzxeQYWTZSrSDSevkBQ7urgvdHJpoSeWt/axpis9a12
+wLfG7HgQ3bqicZPnwDDpPn70uvdpmleHkIRCEZykhU5Oqi7NvmidblLf0GriQDVh
+gh3CEzP2Sa9XLXTkahzWEJWMCB8cAa/B3MuS5HKosGv8Az0pp29wiBLJUoKtXM42
+XHG4wXspvVoZHrLjHI176NobGkqfuJ3c/cC+/p2xIz6DbvQpAWfpJi9LYJpbMbgd
+BPu+INAwMi+KdqMPJfyZ2pxo7jt8rEU4WIgVdjQz3V892JMGqpwyMdmuPs5DaHVk
+yBuZMmyyCKLXTAwv6DPx3uPWRrAu6rkoAmmJzXIKT2VGFe5kmmhtfDVqHK2aMz1f
+lTzgyt/YzqVN2GgGwLXV3wiPW9NnFrG0a8gb8N/EkawPwcbjbVfvDZfcqJeR02Rh
+hFSqSluysjlZDBsf7nrXBpL13ifzChnem6PXcEpaJjI7tDbfpDFWY+3S5TaShA3x
+jRG70qDdekSyyxUP6SQi991CygcMaUapbubajnKTLt7hj1Q7X7aMrGQPlBRcu14U
+JuutYB2QiUGN2hGVI7MKEGoFWfw7yqSM/XRFdYFcppbx0qhbpvgjC2OG52dXrD0v
+A5+1ztrZajXMi5jb+3wWjujid1sEoDE9NcpObXL+4StXmQwm2eg=
+=/gMD
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0-jar-with-dependencies.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+4e5152733ad4e1337cee8e078cb2a095ff866d6fb901f03933d5ae671e1087c919744274fd603c2ff290b3cff57ab16d1684267b674495adac307b90aa11eaaa
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4v8ACgkQeumWDB+c
+ayXLjw//XXPAAJCTpj/VYTKS8d+dkT3fD208LMvgV5M+UHeNvXXIiHYxis6pgZ+s
+3sgWxT3yspFUCYIhp2fgKhQWs937Y+PwHQmZ6RsJSpnZgjTKWbIRxK4XVQTX4J/d
+Kee2/EJbmKpDU1Uyq67n9HWz+CEDNYZKDt0Au7ravKvb7qt8t+EBYIebZltnulZu
+7qUfLhVKeIMw1RWn5BmHJL5Arh4AD40Yf3U+DcyI7hWqNa6Kr5zodRxIeTl2Xdwp
+p1Mlw9iSIPqOYAXr1tqimtEyrgHvtzYtlRpsFvHPOs26V8p4s4/6WGTocSPUKuJZ
+oS+r2jr7vraQuvKbziU0y06r5E8QOBC19fU4EjJLsLl3Mfl09Zh04ZYB1urHZKhL
+d3l1kBS79Su/f4MwK3HFAYlC47q3G9iiCrWdGtmqU+WE9oUTKmZ/JpMGKeEW0Zrp
+5sNQyR6+FucYFr8NfFEMNAC/0vB14H+ZPS9Vv5XM5er9ronKELbA0Uz8xwXfrV5z
+PgPXCxjUapt9MfGzB2kP+LK+1AiZfDvNKp+qmDPzvKCA7mckJhNAYIdKQOSlSFIN
+4yvJqaJ7hB4qwoc2lZssnVlw7ldhTp0U/PtKhB7sXHokGYc6mXxJ70ZlYTKGV+Um
+ZXubv2cgt33mI3ytf60EDg/KUI4esNGtloMGOS/oGWvW+5dvr/o=
+=4cxn
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0-javadoc.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+7f33040afe500fb26217e0985a50b6f8daff647ca8c395c480bd9e5da38bb04d9106857e29fa277ccd3656b5195b4f30eca7dc2562fa25a355df50921dd0eb7d
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4v8ACgkQeumWDB+c
+ayXRrg/9Fdm4g+Yl07sG7g2F10R/3UJUwzZQF0Oo/4YIM+3DbJaVbpD/fg9Bq4Cc
+1YtL6A3mn3LZaj0XBGd0XS4HxBIprdnD/XSRaPJVbZifHbtPDwFxXS5DPF0FIpRK
+CAmIkNwGOj5PK91UX6V9R/qLAiMfjY4F5emargNaTYH7m2vYHzBUQYQQJIbFXYsf
+sdpzePb94zECQHdqFxxEd0YQq9Gda7V25RzxfTOs/x8YFkWTadrR5L2IQosMMXaZ
+o9TjHYh+5Px/pAXzj7INmt8jhiUa9PkSU/tMOX27tJhHZ48NH3bUbNyV9xow5B9n
+0sAM593dYmfqW+euPCETi+JQJF5vDw1o8Kw0Jhori7mJEKic0gMY3B1hdBDIbTze
+/Ne8C9I8hI7tY+tMMNHmwUMd+qKNrYAcvwk7DoNVOGd5GxceMG3YXteMib1dVNbA
+etrtbACX3CNKyKH/1G478TMutZGOs94wp1+NVS4DEif/obd9sEy915klQWRCtGmu
+SFotL1YPltwl8AHpU3G95PssToquDrzp3VUcjRsVXawz52flQ3bnHmhEKswrC1FU
+R6/t5cEvD7mFWYRjCgC4FFUCD5c4deBQA+OJTZqYTZz34npW77eoaB05EJSVLXr6
+eJ0ymX/Ec5+lbUpT5I5nQ5+9PptEG64xPdbWD+wk3R4A4GKd2qE=
+=nKb2
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0-sources.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+f053f416e12142e1c34a095a05dab8f3cd0379aa99eae5b0ff98dac2e13ff02784d0cffaa9ab673b1af4733519b7d67d568a7f437056dba3d8bf9521702bf3c0
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4v8ACgkQeumWDB+c
+ayWbeg/9Gos98FQtrWrFIKDvsRhuFBxU+XE6q7473i6HiCjHKixo9bUVjDtrud/p
+YH3/Jk9f9QcjCbSHi9/X+Ef7+nnrrPaAvRfytCx0Lnbg68yxqFVtFULsbwSSZms7
+0fHaBwPv1KoKd3CkKjwovoiiTUWqluB1NnuEPHzcJFqE/T0L/MESkhe1VsrOw/Vz
++FQFBAEdouTcgNCf8wmqW510UOnOxhXdZ98aBwd3t2T3+pnuu0F0S+qocS4QxjR9
+Urj2V9bdCSvKFUBrGPoUVPVOLYV+UMEV5poLRaC2Zq9/tjPOUPYbdv+1wkQdJ/rR
+9jL8p3GWOZJSw5CcKR9xB2AK8Waz7JLjJDWtxAOI6Ec4vxfdkleUO5xi9QeYrTe9
+v6h6FDIS0fnJSnblr46HezH3sZvcv/sLw+UcB+RdL/g2LM9X6FMQHzvX0FhNqUz5
+Jgo1llWMmy9aQa/0om4xx9sKnLs2rv73fFz7pXaV9RlwfrAK7XmHuHGa7FHR3MhY
+juE4ueWJE9oYxWnQza4hPEb6KW4fiqTiyjxKimpkX3UwQP2hHaVOJET3XvgVsSwD
+8B03Q95WpTcph+0hO/3pEs6AWDWS6OdzZlIOby+mZ3tom7tfotH6UoY/jLWYp8M9
+nPsdHAXm6cFIeRarodLTIZnxAIZ7h6RCRIs4DO9XzgO++SsQOIw=
+=Tws6
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+86f8dd21d2ec3d2fc2aaf4c7d058861d7fcb3a3da7ce5cdc5cbd264d809f3ab25e280a1605122ab14e52079fd37855356eb598b51236352c21844113ca34a06e
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom Thu May 28 18:41:24 2020
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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.aries</groupId>
+        <artifactId>parent</artifactId>
+        <version>2.1.0</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.aries.spifly</groupId>
+    <artifactId>org.apache.aries.spifly.static.tool</artifactId>
+    <version>1.3.0</version>
+    <packaging>jar</packaging>
+    <name>Apache Aries SPI Fly Static Weaving Tool</name>
+    <description>
+        This tool does the weaving to support SPI ServiceLoader statically.
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=aries.git;a=summary</url>
+        <tag>spifly-1.3.0</tag>
+    </scm>
+
+    <properties>
+        <maven.bundle.plugin.version>4.2.0</maven.bundle.plugin.version>
+        <bnd.version>5.0.1</bnd.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.weaver-internal</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>5.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <mainClass>org.apache.aries.spifly.statictool.Main</mainClass>
+                        </manifest>
+                    </archive>
+                    <descriptorRefs>
+                        <descriptorRef>jar-with-dependencies</descriptorRef>
+                    </descriptorRefs>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4v8ACgkQeumWDB+c
+ayXZgA/7B+143J14/TLI+8jCYuEmaKHaDkVVk/6LxTYtVjCWGNMBfsrCbcT/33KK
+X75eELEjJw7XG6eo/aPqeHYDZf1RK85yCGkK/GHnRRzXx2bCheyQyadF/5cj5PcP
+8DMLpc2BZrG7xyF4QD5O2rcL2LbsW3NVugg0tfA02JfbGwcfVnwMI9DerUUegz37
+rk5Z71FAj7N9brAS5nx3wsOq8cNOUK7hHehl0YW7wc95nkhwFzTgjC3N7xTGLmQs
+E32RNBHJ6Ql/8OvyPcwK3leCgVgi7xTgoy7s0Rd7nA34jIZ8WK1r5O0O6zsefoA9
+Um/3ift6udd0QUaQke1kxl24IqybIL7M+Wu5/mVroGwvOqhCGGth8XFrL5t5BbUi
+C4KfhWjSiQlZy6Goil/ptRxmL0oxf0vKoEGMN9tbGOtYUoHkl4AojhUkHGwia70r
+QP2D42ASKwZHMVMeMaEfUOP8qUXI2VBGvKYU7jD1QkTUcyV52pTKkbaYGP75uWp5
+YzU+ioO9wATL0S5vxxhPvQ5H9VFXCL/PTjZaS9KNbK73nTblktQYXrx1DA94lJ2u
+iz2Eme9tiRjGE9YSG0CW9Xg6nswYyGFl75jTsFd42e6qU6yVuDHI8AwGq0TZGfiR
+L4+KJ8dCqPHCmJRsvMB8n4IMwD/m0+ZA69yrV8RVkoJ/0rfQSp8=
+=zLBl
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.0.pom.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+1863c0c77f5274009c124bc05058fb931a04567322a0c61e0ea84492bce1d8bf7f8e649eec53519dcc301ad5a805dc2a51adb8d40ef7d22cada46dc35d3f8a56
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4t8ACgkQeumWDB+c
+ayWS1xAAnYL3rWP0Ff+a+q60epv1F/FrH8IlO/hly+OpXpr9zbTkpGjuciFd9BvU
+JgH7lsoRhkFnUKl1B38YHEibQR6D05JTuOXbHyA/HdWU6u7r99KIsAbUdlBWpEJo
+TPh4+6yBwgWdx0ydh2+KDBLwTyX8bFm2zPkEWwMq4n67D9dIL13SlO+gfZD4Z7sY
+O4Kn5UASoZ1G9/ro+19XMsJDdalYwECFmJkPxgXfY2sKX138Cw5MKD3zpQSO/C5d
++Yc82vfFfwYiJjTscfPbyIAkSvsRsZnL+807RiKBK6tVIQaGVquWaaPCcfsqkLD4
+KggBbdRMva55iSpRsrsyPBy2tt4cc2YYdZU9yGbcGukIpg+nBY0cZXLiOQzqi1c7
+3LM8354F+PQJqteYddS336yQrdbVLtRh/JKNHldEFEs478NK0qHXGhaxHkivOm7F
+xPtWLPK9oooQEe5Frl6WUv2Luup9CXd7B/BQ1LJbIOlmP+2sGhyqqeF1NH9Bq5V6
+BWYSkewZx9deYBuTKfGHs1uux0NRkw5g737z6hupJvK3U2v1ErxV1sKNGU01bl1t
+tiDaAGO4jgaYECJm0C8NH1txzVoes1prsJzwtBRsoCeV4/5Kb2VrQ/hSJXSTnxx6
+3twP5WxAhs7cR4GevAlo1YastNP3HoHt4gIhUhj5xV6YeSYlnmQ=
+=+Ffp
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-javadoc.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+0e9151eaa9e334b7b0bf0c1c2258a8f3741bb29a4629feab8634ee755f8b6c1d35b151d08776bd9a3bafa4e1bc4a31fef639a0b6569ee1821eb05ef9c79655c2
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4t8ACgkQeumWDB+c
+ayWFvw/9HMBnrQumonqiHj6bvV/IYfpO/B3FXupKmvCvbNGuC252KyPWKnYYZqL6
+oM94xaum6CZmVmfP5E2z3+JK3l5UUX1k5Y0fyg3/IsZAC86rCTyfMPNqN5EI/zPO
+9nS7R8io6DZog9vY7rDSMxKw6Az9ykC6IaEu36BCSG4WTe56gocxg9hLHwLFdtce
+OfbR8VvQjzA4mEyBpXblqd+fPL+NO4XkYEi9Pqh9ZKc+0hieaFWmLa/Fh8gorgOw
+LCHhum5gOGnwfvIJTDt+F1zZfVEW6H2OPgkjxt3Xk24CY334eURY89RAV42CTQf+
+n4IcSdpv1cSgVMIfthLmxmJ53NQ4MQMeqTax7VbLOnck4Che8Apg1NE3qZk3G+pX
+ftPB4BxEFilC7YeCgwuyQAe97OrijRhHPMSiljpq7Yo0g4Q5RYQdRXF1lZPqv+dl
+EDNDzuM9AWyWqQi4wKHn00zr9+j9YuNi07OqnkdppPvCaH6KTiEMU/WMQnS1eFAr
+ClIvaGzbrO+bCIyJlY1AxxKRu2PzglAtZK/xLauMsbagH7t1LXnY44mXu+qkGPLq
+BCqkTrWT4Fd22a7zQjJNKMWPI/4l6cy8kQ8KkusPf746wVmVJ7DFf+lnu/2OFofU
+xzeOhUfciEG2ezFGPKiKYQi4jRMBzK6QtA3nQNNoRx1zlAUVlj8=
+=/SzQ
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0-sources.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+0d5f250f3b6948674e97de3404d93ea2a49883d61cc798cc2eb5c3c5cf5fd738eb479fcbb965320ba3daad86a65def20372b1b1738a97df93ef61aa56b2b3cae
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4t8ACgkQeumWDB+c
+ayX7uRAAk81atHLjtHrRT1/JkUV8PI2GQq+KmsUa8LUxcATLhBk2qS7mDlZS8WGS
+TpxyQVs58BrZvjukGWQrWHbGfy/6K8dUcyQ8RwVbFlKzAT0+LaWK6GCCD1UZ0ewR
+EGD8t5U89V7Yb/p+LuunO/ZVGGEEND9jS4qYMgyFA3Z/dhx2z0kmyuQUIQIhda7S
+CiYTOLMRZ2g0lGT/B5a2TK3pjT6Pfwn0tm1P9rSRaT57nhgNgb3jvSBnMwAHutwW
+JHzt7LP+FroeWruop1cnrSMCdbRfNQxoJK563ohl8AsdLI/whoLj3RUPme/iL3Ae
+Nm6NzsyTphKJ4aw17aze44OqJVl+c+00n3OR7cGDN6JSu72cufNqcm3+C5mijQMJ
+ZYFLCmneoINBuuhcNtSjr1ZAt7AsL++avDWpVZRiQRUUb8OWpQIvCkug9+kE2nnH
+8ijqL93Zhol8q3f49N6meJF9wSrAMxo++D2Fu1INn42FYzPP712Z6wUf3v5KK7KT
+aADR8peNKGO1AUhqoIUvTNcSUXSxya2Dd/OyrNbVIbu14/xf1WHuq92NtLopNiQc
+NdcO4OU0MlrpkTQ5ZnaxHlblzPtinbifJx/m9twAtbDRk7dfx8ISlp5azlAmCCtY
+euJto5MkhoUxBlAWDVUtZauLyG/xG2KwOaiYgXZGRbPVQ0Ia1zY=
+=fOvL
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.jar.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+70cd44cc43763c89a8d772944fdba6cd760bd459d6f19e57980b4d722df54833b3735e94b2029bcec0aac6f7d054cebcc9cd72d50de743fcbe9f1ef625073cb5
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom Thu May 28 18:41:24 2020
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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.aries</groupId>
+        <artifactId>parent</artifactId>
+        <version>2.1.0</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.aries.spifly</groupId>
+    <artifactId>org.apache.aries.spifly.weaver-internal</artifactId>
+    <version>1.3.0</version>
+    <packaging>jar</packaging>
+    <name>Apache Aries SPI Fly Weaver (internal module)</name>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=aries.git;a=summary</url>
+        <tag>spifly-1.3.0</tag>
+    </scm>
+
+    <properties>
+        <asm.version>8.0.1</asm.version>
+        <maven.bundle.plugin.version>4.2.0</maven.bundle.plugin.version>
+        <bnd.version>5.0.1</bnd.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>${asm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-commons</artifactId>
+            <version>${asm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-util</artifactId>
+            <version>${asm.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <version>3.0</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+</project>

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4t8ACgkQeumWDB+c
+ayWXeA//ZlUFqmo+cjzy9kNtXTp9z+/+YBNqSz6+6XR56WpjEdMF4+zA0tFGtSWw
+udgN1eVJ/2JJIjJV41zG+wM9hBpm2/VgX1F8dJ7NPxlXQplGGJ46QIdUJLes1dSl
+QLZmyCKfVrpoPl+DixHT6umeXD4UCSwKs0yPUQ71cLpHLQKj8HZmPHTu6i89zCkw
+BooRIfyh4NNHWFCxsgqdoOA1qev7Ktp168CxehTqiJxqVOBSspNgsgM4Ix+91Q27
+JIuGJx7CXwvCyCZZ7i9SHSdHrX/lMd3ta6GBdSZS5ndXhoNdlO4cWyv7fDkHHqIi
+q6hsuhBiemuo2w0zQVFPttpj69m+XoXrvkFbV7miIBEWEbK720jnGp0wTxNvo0++
+OXq825wRMiVzIjDcdBIWPYQNbH/jHEs3E9N5EEDaGUtbsfc0QLlU5sdOHA/E4zuM
+dtsk12J0cnndfrlwubIGzqF1C92SCxoX+kqiADhK2b8VmEPOh17LPrakv9MZZigv
+eCaTfczt7zPkBvklYSE2ifbmL7EhUH0rGkQvBzw3rCIA9/6MTZi7PwpAXTkoTVNQ
+SnDS5sANIZSRV0R+eilYtPamlTcHSo9a9jFQfA7bIAhk+EJMiXxZOT9qc+dQ0q8e
+j891mTVJcpKybf9QorebbmJuwgGZrXv+3JtBBTgLWtMi4GGXomk=
+=HbkS
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.0.pom.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+9c1680ae4f8aff758c7e254337968434db911e9fa2e0ca13d823e25168c95522af30d826bf060cfcae203e095f963e4e31d68565224950b4c775e78029af7b49
\ No newline at end of file

Added: release/aries/spifly-1.3.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/aries/spifly-1.3.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/aries/spifly-1.3.0-source-release.zip.asc
==============================================================================
--- release/aries/spifly-1.3.0-source-release.zip.asc (added)
+++ release/aries/spifly-1.3.0-source-release.zip.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4xIACgkQeumWDB+c
+ayXUXhAAj+KWDgG5UQGoTGPKEZmIJs/UF9gDQeJ+Lx0FvYWz36YSU7pshOM0jIjp
+geHXyjZuAYSQXbcBYH8ZV7nGOAn/IsDJj4ThCHAPrQNHIOhBpnSYJDgI5CBxjOzy
+ZZXYY65IkbrM5mPWolY/ymi4AKcmuj0ztNSUPIjV7OKt8EV3BOTbJqqrbr785mwW
+KusaDRlbtkxKA+GFid6mc842qyk2bu/KGf4sYIX5SM8qmekKTflkJ8PCf9wnnXNK
+Tw4Mx0sleLfGSOoRgH5UjxpRGW5myuuACZ4iKxIvvDhey3Fk7rHj7iD8jkoZnEVF
+P0xrjY3vcbNngtsi1dpEg6P31KFlfw8Qw8cF2agxCvzy+fSut875Nd1XxgnT8Ojw
+NprXL8qLoF4WHg1MQo/oaOPHuxhkVw6Cm/2GkpwXOT1ChucmMj4a1syga4pwtVXB
+50R5FOuLbMxqcZDXiJ3n9qXVl78RfYMO+66aMon9hA+NqbDzZO3wT8w2JenBdjtJ
+M6+nsy5hFOl6KqciYhwa6pe5gf6L2PbofM9eyv0+s+fdggu4P0ylDN39iWs2DF5j
+Bi8nfilOlroFtYz9dUffyWf0yzf1ts7TeNRS/1eZcgdyclEjlKdvj9EksjvbwZFe
+oU8XjnxUq8bZnjKRzfCXPCgczdAMeolaH1f4njv96qx4b+zgpAA=
+=2JYo
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.3.0-source-release.zip.sha512
==============================================================================
--- release/aries/spifly-1.3.0-source-release.zip.sha512 (added)
+++ release/aries/spifly-1.3.0-source-release.zip.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+55a756d77bd8f57ccf12fed13784d287c9ea12d2f07a8cdee70113f8ff29c7c0223e5755a67e0c14d3610c5d83c70555811bc6484d310cc38396b78408588e08
\ No newline at end of file

Added: release/aries/spifly-1.3.0.pom
==============================================================================
--- release/aries/spifly-1.3.0.pom (added)
+++ release/aries/spifly-1.3.0.pom Thu May 28 18:41:24 2020
@@ -0,0 +1,123 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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.aries</groupId>
+        <artifactId>parent</artifactId>
+        <version>2.1.0</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.aries.spifly</groupId>
+    <artifactId>spifly</artifactId>
+    <name>Apache Aries SPI Fly</name>
+    <version>1.3.0</version>
+    <packaging>pom</packaging>
+    <description>
+        SPI support for OSGi
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=aries.git;a=summary</url>
+      <tag>spifly-1.3.0</tag>
+  </scm>
+
+    <modules>
+        <module>spi-fly-core</module>
+        <module>spi-fly-weaver</module>
+        <module>spi-fly-dynamic-bundle</module>
+        <module>spi-fly-dynamic-framework-extension</module>
+        <module>spi-fly-static-tool</module>
+        <module>spi-fly-static-bundle</module>
+        <!--
+        <module>spi-fly-examples</module>
+        -->
+    </modules>
+
+    <profiles>
+        <profile>
+            <id>rat</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.rat</groupId>
+                        <artifactId>apache-rat-plugin</artifactId>
+                        <version>${apache-rat-plugin.version}</version>
+                        <executions>
+                            <execution>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <reportFile>${project.build.directory}/${project.build.finalName}.rat</reportFile>
+                            <excludeSubProjects>false</excludeSubProjects>
+                            <excludes>
+                                <exclude>**/target/**/*</exclude>
+                                <exclude>**/appended-resources/**/*</exclude>
+                                <exclude>**/dependency-reduced-pom.xml</exclude>
+                                <exclude>**/velocity.log</exclude>
+                                <exclude>**/DEPENDENCIES</exclude>
+                                <!-- exclude IntelliJ IDEA generated files -->
+                                <exclude>**/*.iml</exclude>
+                                <exclude>**/*.ipr</exclude>
+                                <exclude>**/*.iws</exclude>
+                                <exclude>**/.idea/**/*</exclude>
+                                <!-- exclude Eclipse IDE generated files -->
+                                <exclude>**/.project</exclude>
+                                <exclude>**/.classpath</exclude>
+                                <exclude>**/.settings/**</exclude>
+                                <exclude>**/eclipse-classes/**/*</exclude>
+                                <!-- manifest files don't support comments so don't contain the ASL2.0 header -->
+                                <exclude>**/*.MF</exclude>
+                                <!--RAT doesn't seem to recognize MIT style licenses-->
+                                <exclude>manual/src/styles/print.css</exclude>
+                                <!-- RAT doesn't recognize BSD license in transaction-manager logger -->
+                                <exclude>**/objectweb/howl/log/Logger.java</exclude>
+                                <!--RAT doesn't seem to recognize W3C license -->
+                                <exclude>**/xml.xsd</exclude>
+                                <exclude>.gitignore</exclude>
+                                <exclude>README.md</exclude>
+                                <exclude>*.cfg</exclude>
+                                <exclude>**/README.md</exclude>
+                                <exclude>**/Readme.md</exclude>
+                                <exclude>**/NOTICE.vm</exclude>
+                                <exclude>**/dependency-reduced-pom.xml</exclude>
+                                <exclude>spi-fly-examples/**/src/main/resources/META-INF/services/*</exclude>
+                                <exclude>spi-fly-examples/spi-fly-example-resource-provider-bundle/src/main/resources/org/apache/aries/spifly/test/blah.txt</exclude>
+                                <exclude>tck/apply-to-tck.sh</exclude>
+                            </excludes>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>

Added: release/aries/spifly-1.3.0.pom.asc
==============================================================================
--- release/aries/spifly-1.3.0.pom.asc (added)
+++ release/aries/spifly-1.3.0.pom.asc Thu May 28 18:41:24 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl7L4xIACgkQeumWDB+c
+ayXMeBAAkOk9Fzvyh9z2hj/AaO0mWUyQSe2+OfCJceRbw+9ejkyJYUGkpfM7u+30
+jhpyeyeEklc5m5DAAUWh1vUp8lfimxeU9PvmanQj1jKF1QwB7Kr+eFe7+U0E86SM
+uMiclMwo8qxY2KgHYk87RkK7qiw6QZxXNVTXEgKz51f7fhbY/BOeLF/OsEb+biLc
+6g9Pvi/xX0DPugCqUgv24uVTLziWHmoSx/2vrDKJtb0PrBe6L/SvLC534Cqz04Zo
+XwundT5YzSSYVhtCRhjBevvfZqp/59RvlEx/PcmEy6LgVOuleGsaGAY5tWF2fz1h
+UsH8VY0XalDsg+FfWv8NzbiF9QXolPkLCcduqQT/ZBqX/N6Mc3j1rwrvAp7/1nvP
+BVIXYc2i8UyaI9BMPnLcVvjVQMgY3ZhiDVlKbJWZNlDEcbNVOTWyu5o6NkUCo/le
+WyQVGhnEdw5rPpGyqhB4rbiKO1Qgevy+sCCTerK1fgK7aSHvFoGZnKL0HgNdRAzi
+KACi8Z/7gb/oNLAQFV6V4CkbG9z8lB/qS7s0zCIXiVYVZWavblUfPRM17Fvc6j8M
+k85HsqirPilL8AoSvGjwRxSaEoqmk1SXfg9oOmEGkNHvYkG88h+hN5FYtyHTqfrK
+a8Pvn6o22UFl5avlaaEV2jS+efWJzJ6y1CqHoQ/fdY81NErdQFk=
+=3dnC
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.3.0.pom.sha512
==============================================================================
--- release/aries/spifly-1.3.0.pom.sha512 (added)
+++ release/aries/spifly-1.3.0.pom.sha512 Thu May 28 18:41:24 2020
@@ -0,0 +1 @@
+36966d439175832daee2314163ea138f730240949516f7509bb1dfbb1ea377b37c5978a8b8c70dd1fa53934af1a5f880e66f08b14229becd2253999e582c2e47
\ No newline at end of file