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/04/12 18:52:54 UTC

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

Added: release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom Sun Apr 12 18:52:53 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.2.4</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.2.4</tag>
+    </scm>
+
+    <properties>
+        <asm.version>7.3.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.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>
+                            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.*,org.objectweb.*</excludePackageNames>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>

Added: release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POfUACgkQeumWDB+c
+ayU07g/9Ey0Ibs6uLfTYQEEv+zBPuj6pf9+UFwuYG/B/kGyBgr4S31CJD+2UvF5h
+WaRizuU9WROlE/4nMhb6xzyvv7eLuuN8Ui/QApGygEKJziOEqbLwPqxSZdrxmlDK
+26rybGysHAeR+QCpTYwwBsjphRwh/Pvw2VWYNd5WNcLtRfk1DURmWSkCIJvTXGnE
+tzKvNohuPqieAktvtGu5XzguLeFWZuITLPRLLAusDHw5h0mt2tUKNqWlshnHtJm/
+1zFz96L89kQp98O+vTANSIgLk3OH1Lwq1UCOA2L4a61yGBACpNP+qxPqZ939zdXN
+HVPpdhOUKOxX+bSuxHYdjO9B+Da2YdNA9SD2io4o8ozn0+Co4jh4v/6IUvcYnyUa
+Avwc/GJtQAWDj2JQ9k3hj8M+IAFfOHmpkrHdCoMyjjeLaHhlQRSuTk/DlO/4oR4v
++i3sOiG3WzKdLwj1SmqOQ3H1h4fM4HOrxeruCJRVbYwO0Njl3rf/HSKVmSlEYH0M
+ku9b0dSxPnqfBXj/rotXl2Es+Ar+A0QRLGEuEgBngxQY+GbSmzSLz3mlf3qxKv//
+96cmrNtGqFlKeL84AhSSH3EI3BgjlQHDydtMOR4+eTl5J62w33UM6W/5bhcdwOck
+67CL2LN+rPwqoU2UcgE+hJO+1YeLlp/npLuBZiYAheWNCE7nzis=
+=pFsN
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.2.4.pom.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+414b0b6d31c74100f100e29ca75e5c6f5837657fc3374407f3a6af62ec3118581421c2edbbe1d4a9e1bae7b86f4b31f227a5791204c621981c8ffb77c167f35d
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4-jar-with-dependencies.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4-jar-with-dependencies.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4-jar-with-dependencies.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POeoACgkQeumWDB+c
+ayWUPQ//cNOX4XHdosOfu0YUuxo0lcrV6/ZcHamegqeEpXhe0AAyXvVCTUn3Bpnz
+/aCFtsRkdpf7ERH2523YoGIPyilg8SUDd0UjbaI3UqUPgnKg4i05lhRMgC4hsNSB
+bdpoSrvfrJLM3aBO8uguMPbp0mDIt9f9eS6iV2aZMwUPjUqjIyUFFD1NHvMV4QRs
+R1xRZspUnNPZHcxoSm14WL6xJPlnYywUIufq0m1OBvI2VLMDyoUKE+VCYs4U8a7J
+jVhID5Ju+ODiOCgtocaVT035KAFuD3y2LiGXwwIV/e7A5/ItZ1tYs9cQamaaeCrF
+Ib9HVkuFKAKo/mOMGcOApDz0RBwm6clfE+vCmldnRLnRtD0yc9NyddAac2VXQSLh
+gnwrFMCguuSzlRT5gtfInCz/lwG679qy6Q8PXC0MV05jZAFUiGHQBjqduoFKKtzP
+2VpvNJvEP75CQ/yPVzg2QxPgOoZagUjmxoe+7CUMawl53cO6zISTIwyTs7K2NrU6
+Fr09KWwpSZcnwYCPj+YsXB7xgcRtPayhzJyRIm7wamZJEBgP2fLFhg0GGDoYO0or
+gwea+IPAam6oCOSiO11sRcLqSKRN46svLtgTp8j5IlPxjwB0qHu/8KgsRI/H54si
+mIPeniiaTyvjvaFqCsjevgU/aM0QCa487qqJnu7U3Sq3c1u8sM0=
+=goAV
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4-jar-with-dependencies.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4-jar-with-dependencies.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4-jar-with-dependencies.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+20a883894cdd0996d6509afa345e85d040d3a6c57806d5ace1abc8729089e767f1b2a6f54df3da83d9504e690df50970c7c5f4e2b6f2b8c0aa672810cd7f766a
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4-javadoc.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POeoACgkQeumWDB+c
+ayV4jQ/+ImpS77PZe6Ci4fCIUNippE0vS+snHQ/U7gkEl3pwsn2Na1zRcClTxezS
+jRqBbpN5zZZKW4vi+F2J5MZOR1WnnKJDbaoYbCar9i7ltR8DNI2qR8LgfEJGPiPQ
+XEA6EH50tfcKIF4n/p+/G6Ts5HzSG0kk+fAcCn+AwRuolpKVWnHAWBMTzole20Ep
+6hIkpztf8LVOaJCZXPDhty5P6Qh56LRvjz54w0PR47LXHBwJKaw6OkAzDCTMoXdN
+ox3ua4yBoAWW7g11S9YTySLKAZ9tdtrHv/W4VapQIwLATD3eFnZQX5RPio1S/apL
+66qRJ6iE1IKU+Cu75j10C36Ip9hzIYuzlra5Xnbbf4B0yyfDBqPpwW7vaXm+47AG
+Yx9dIzVNMS9GBYDo37ufZ3r0cqEbJ1e7vm1OUEbn6cs+GyFAYA34u4YZxBndw1ry
+ksAxFS3Ymq4ABvhRx4F+I2CkEbmjPbKY5uKB1keAePmD9KAcQItFzjc49n6BJRTI
+5mlvNtytJF+4nbvBz31VHXpjOiLuIcOapuvrO7Gp9VzSEsMzf7U5E/kg+LvPx2fd
+oteLgCeS7b8+Il2sb9XxvmKpITO83eGmq+h/DHrzEUSnBPigl8cSYm7kRQ7X0gOo
+8fmCwIV7vV470uhf3uzZ7PQTSDQyt+wLoqxnqNGDyRsP6rnQ538=
+=11OI
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4-javadoc.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+936acf2c422ff58b2c750750bb4a091a9065c2d564240eafcd7af6f8884cfe7597cbe20346635b81d683fd7f9e00dc348e597f3414339e422509acd5e7f3f775
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4-sources.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POeoACgkQeumWDB+c
+ayXsuBAAjVHeF16o5pJi6MIu+NRmZCUonGlHpD7lmj9mKGhfLTItXpeP6aXLNv3n
+qBb5gocdfuS7sSrV7fBfJpr0g0y28xvR9UGxFbTQSrsQVo7WLW0skmx/pMvDQ4QO
+KmgrCZexgxK1ooHu3UqUO5fuvx/X+8pUZFEqFnWvn9OKEF2axwgS5REHc3ihqrc6
+8u2PBa5YuFC5CIN7FBgsOGLhWam5+AgtmDKqoQPWo4DxKFaZy8tNFA6Z+/izNLea
+E08PwwopZookBiqHsh09GOfVoelJ81KNRDnw1lHfA8Lvq11fIZNSQEyPvinV+DhL
+aNrTOZNzPgksWInFy66YCGmrScjJdMqnAQmML9lyZLnClh/Eu8h/Qj1JFkjNqet/
+El9Qw85seOfajDfwjP1QnQZZUkOyrRhqudIixgPYNlk4VrVRP693DnpH9Wn5T27l
+aIMvgsilwo8vLILgeu/+CnLgHCtdi9mLlhP4z5eA8Z9nKjsxP499NPwYvE8+83j6
+f21SSGyaoLTtc9cJQd2ThqHTN0QApeBnO2zAqq1lprxv53/kQ1YF0GqERrkoGDoy
+ciZtA+kDbkGzandIxNk4yhqUgMx/4GSGX2gaG9Z6nXc1N2TiP49xutInBeawkK6g
+Uw3LC59Bcb5VOMvKczJmTY1xphSXKU+rCS1vUiLPve6C5THfaA4=
+=zJWR
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4-sources.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+1ab4ffeb796364fe933d2db63dcaaf3851ab6af415dc15cd66cf8d0f194618e00f22e6c1b45c96a8dc14a6be19e91a8d7da2803494cea4d059ce3c9070f46edb
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POeoACgkQeumWDB+c
+ayVINg/+LefVPg9SrkzKnDNsPbAm4rujJmMipn4lxSmlLwQpO8ZvMDzwkTNrVSyr
+q1ubimB1tbApVYumfplT8bFRWjUL4I9iSupFsiEUrcBhWOu2wGNNr0fZesmwJc2H
+I0Kk9Y7iZwyoWtpP5zsmBjxmuPUT+fUQKk9z7gEe06Ar7mGEyg2+4xYyIQDJuE78
+8ieFRIOr74kWdteKXun/k5O5CSvg4E5HffoL3hF9I59cc6bbmqjyJpt70QxgN8nl
+C1JOFFdokyhcFTadqpxZY56PoJk9FjQUmp/1/WrjOyrx38IrjaInyUszEn5nYY4w
+3vlKI4OQ8DOAams5Y3/7PzGuDyjgStmhSt6Sr+/D01+hRvi9VxHTub+IyxqzWtz/
+5pqscg/+HyCwFjkFHEhfJj2WHWtko0e7TV7o7pEm45y2FdJhS9KXOjAyToaDDwOO
+eSYzCMaexa6XSSsIQK4twyYqa4PwNgYncllgvRCeHojwoHklb1rbEpXDFLKrfn2g
+YZxR+zr5fYsJSW2vFerVGJD+s+p3TuzDJDVzI8ZUcO1VzUIR+2xl/LiVwQNBbwFU
+wZDamiQNA0on/OlN511Ok9OAAoxO8yaHM0abzLLrhnBdCzqcJAN2q7dw8nSJBYEE
+zb+r5xQ53ZU64bUsDwyeVejKCw58Sj1y5vDet8Gbj6sMMPuegFs=
+=E1+w
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+cf033debcd209ef616bb8c64a55e955d81f6389b48b28943b361335656d9fc207d95526966c8b0a8f8b01e4f77065ce62007e1952fc529299e609f9949456299
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom Sun Apr 12 18:52:53 2020
@@ -0,0 +1,117 @@
+<?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.2.4</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.2.4</tag>
+    </scm>
+
+    <properties>
+        <asm.version>7.3.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.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.2.4.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POeoACgkQeumWDB+c
+ayWyFA/8DdowAabkLPsi+tOY3vujavjGOowMKtJ0OQEPlf6tff0rhP2TJZZYPx3p
+l6MG1yR273nZQ4M9tKZAO0rnoYqtnTJtddHneNqlcfen6/TAA9L9Zc1GHYZkOllh
+40UA2wG+EO1CGPhtqLEtMapgxyCxHFLU7C+kz+Xxps7j/pcn1Xyt7d5dijg4Eb/9
+JmZQJU+zer/XM//kF3jFaisJjon+kRGscU5pWvF2Jw34raWePFv79WB6p/0TZbsw
+qEXcjtUlKYbfVM4REgFICOhR2aft0JUkljL5sVHg2W1ycZ4NoDQabecrb1kIs+Wa
+NR10ufAv6ARKhDPixdtov+tFtWpVrUI0SpRE4jyQKKMsCR7yInXoUgy//q5YtSUs
+mRr0nP4x4tS9L+5x2WSSe3/iaf7zCo87ODev5Q6gwJkcfgQn6CAkPbUkKfT6PN0L
+1E6iNWb5J65T8gH/4w8Wm56lRED3vLf1U6SL2y7HnKBKSc6E2j83uSXKRPLuDfaI
+h4pJrQtn3aVrPHitwoyKs4/h6qoC0H9vsNx/B1/h2i6ObCeSjpFKqV84++09nul+
+2sPBBm0bw/JpOY9LXUIDuSGADWqzeGk9s+9XN9ZS7UDLb2P/B8Rmb9v5R1wc/v/0
+VHwxCi5+Q8nnYipP0XSHbQlgpf3WV2VKj2sEgQ6k2rNpfo2zq1c=
+=lQ7I
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.4.pom.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+6d3abdcb6fabdb6af2f96ef92b0d9e822578d0f543a2d7f806201988e60e30155321b5e4e3290c5ef8b0782a45abe495fad0aeb5d243e00b02c81ae7f43194c3
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-javadoc.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POcwACgkQeumWDB+c
+ayUkFRAAn+otosuw4gAY4cw87sJ3aGfdBfsuUq+UE/FKLFeNqDJBBWUOdAL79ts1
++oNCjkNa6G4qySFfoYD3qKlC8Jo7yOWk4b5kXJh/vRzJTiJ3YbhYzKmoLgEOVz5b
+LeBHM2YCBPx9ydrUDyw2BkZGLRrd9q2dzfYUG4ATsblTa0woBa17ErXlDw9raehs
+rMP/7YKYR22Eul+bg+m7R7SwpYnVBAfqyPSN6xWD7dO8WWd5rmOVk3HHm4+yQBa5
+33Q7XymW2pwuW1CtE59aiNjU3OPp3ljUWRw/N2+pe6GIa0/GCqo/agZaIVFSQSUU
+IjRbyBkuUBs3YbpLkeV7jfiBedG5GPzAjHSP1y2Ek8S0FB1kyoKV/NjRbapXXM2X
+a2+DLshsmqVTJINOFZTnXtzmegujGpvHJA7aXt9Nj76oE9qPLc04eCLdDabgDPYc
+DkiFzpbTkowDBgdzblQUuSSBiiAWXjzQISSM6K/ncN1bw9gM3r8YjWOiY4hrYaTr
+ew+m0HDLVLzjWTVxZ2fxtdcPtCQkJxn0w5xtJ/cfLa9gpPmeFObv3Vofy4Gt8eRz
+Duuo0j3um3n2hzTSZb9UEU1OF5OKFFq/rhGeIz6AfJhnwY8oZkncGyBcl8RbAQ0a
+4nHh0XZXFJeUCuBc0pSWcdMDLeb9E8HnKhFhQyy8UjuiQ0Bn8tM=
+=oI40
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-javadoc.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+4c257658ec8f328bf5623cc648aeb14141fc29746e335e36ad83e97d271c9f1646f768a2b7d5fadd7058fd76d788f2889672a449fc912b5c99fbef993cd4ed0f
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-sources.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POcwACgkQeumWDB+c
+ayUA/Q/+M3yA0nZyDDNI62Ka/CEVBeIuv0iMFr8DNf7DcoR5foj3egv9WR2hz1Pj
+05KtjGBUM/eEOq7WMd5MJEPqxakyL4P8gCwVsD33CsJQ/O1cItQrhFXOCmYg+Za2
+VxdOQnFMQasTyNXm1cSxs2qH0d4+rpTSL9S/aUjppNy6XpuBTX758KZONK8YQK84
+tn9LdLElio6+lq2NreFcuVwUfbTZNbP0u+SMsWtgbD61oqmQrYJwMIjMSU4j+PcQ
+lzVQ+bBHjWWhFt27vKY7wHgOIs014UDtTJgSYvcOq3XFg5UXQzM5U/ka52/CA2dD
+1jrwZJ+zf1yiQuHAfuDsWnS8s0v1J8laeEeWSQaKOau0NhScIsS9ZRbLN9TDNkvM
+mx+ynZMs6ZOsqvw9YdoTrN3i6d0aWwrSC2xY1pZNK/2BGQaoPVlvkmn276qVYVe7
+JQEXOvYVK3TS83yFqYgXwDHzcnXCfQfZtPWCmXamhFSnz/CwAR2bxbiRCnoGFnqM
+M0qAaqwUXTK8LfR6T08+vmTpgmZ1qe2jFeXB0f3aGIwUUwRd6Dy7KWAH6GlTnX3I
+TDzeDAcS4+nSa2Jc4c7l4HZAQre5mCJhiMFTFU1MW1MsvnaGNSCIANkJrD0OcF9f
+FFw1MTf/XiXqERGEKPZFWHFVOqD/QguqHwzYDDP6qnNOdG+3Dg4=
+=lDqx
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4-sources.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+5a7e967bb8ce35642f655f2b3a79d2ec01cbaf61ac83d979e69565f2e126ba1daf948e4c2411064107e6693a1d8ff51ec0ee767a930c4dccf568fc80e1cd5af5
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.jar.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POcwACgkQeumWDB+c
+ayUAABAAhjRaBF2P71RpV46aofJO9BybMMg+2Jqs1MWF9RwW0Su/Oz0SvqfAw+E+
+op/nDMdRdF0YcYztosE3Ma6y001puVanWz1VrsUnqbCIjLPQqlva0PaLNPUXicBL
+bV0rJEPmy3IZTM+Y1ghK+aW/G88jFVtY5lRi8kAfv3TJ/EwNrZQt2ulJyU5hAkDp
+7kDKBZOwRSB2VwNgP9hdKtfFTZIo8RnRFRxd5G0XSfGEqWOaUlEni2i2AyHsBI89
+2W+rxmqbtYjPzWan4VL14E8BGgxcju1czsEarl23LV4Hl5M7OMNPHjB9MHv4PoWc
+34U9JPH0pp55UL5sMuE13aqF07sVtL8z+A+JDHoxybRoaem/z5IdB2QTygE5xgHj
+IYfsuYL2FyGcrCO4TMHgl0xIih5Vbtz/mGnUvO5D/oHKtkELbiimOPqfFTN6FtEK
+i4RGFnh2IPnNBc+1agxEbg1BjcwEkDbGTe4skpHZfhDlRwXITblQb24zRVelzXmv
++fff1ykct7UdttiEJwFK56kojW2cgJzDOV1jgxOFGo98YosfwY/lm2rRHfSkfZNd
+WlBEO+ZYJofbdyMl1IpgWXBSNLV+FdUSTO5Qu6S11IF4vKzvgZbpHDUaCIJGvmAB
+WHbIqGba34GfQ2zlwKNiMHj74GDyCEmIXD/OjOlFniAOliIVbiY=
+=lI2V
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.jar.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+fdd2da452d4af672cac62ca083e288527b9dc64bba202e41a25cddf81b88306bf2dd36b63766dcdca3aef85063a9e1750372bd0f189ddaa6ef2efba3fcc218f4
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom Sun Apr 12 18:52:53 2020
@@ -0,0 +1,81 @@
+<?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.2.4</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.2.4</tag>
+    </scm>
+
+    <properties>
+        <asm.version>7.3.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>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-commons</artifactId>
+            <version>${asm.version}</version>
+            <scope>provided</scope>
+        </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.2.4.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POcwACgkQeumWDB+c
+ayVJug/9E2nxWjL9yS+akYIm8fS9kESzk0VfOxkhsupS/deo2Nt6EGW1WkfgW5uB
+EiN3p7E8bS/c08QCR1nZ/rhLOTvYLQRIYQNqlmXdvvaF4SR27Ty4DioyLuVLgrL3
+CsXJX0nMNoUw+7OjqMs77Nvxf22OPLtAjdmyYv41X2eD6WSoqRKh3EYH+NRAJXhN
+CWbhCJpX8eTIeLQsEdLT6z30nRagleJDUy8g6gxWxCYx8E9vs905uW7qZIcBtzUJ
+8Uya0xb0r+FhV3LFYVkJ+y4DGswgN79QF0Ko60bVAE+sYaeZDiI4aycSx/n70SJp
+/prTIOaP9/pB2LHupY/JsxYeilNRZBJp1LKMCuNMUriw/M4KHXsnsydZpVVNupRn
+Q57eWlwzN3l1bsTVz6P5tgQ1s2uyf1z+CaJ25IhT6ZPmwFtqLfEKfw9cdzbpnhXe
++m58hDESFyK2lPImHXNJRC2EJFiwX1vgOQL/xn3/3rC5Y3IRyG5hrJ1WvUA6gvr4
+K/6ajb9D26vvDrnNJozipoVw2cz4yuJ79o5pi8ClAdrpGFSGx8FsV19QRPQQRsIh
+HzJg2fp+0v0sNG6jmD5GoebxUTiwAxvTkbtv0gKEl9UMMkbUdZXRa3CXfxN8N3sO
+i5VT1Xbll4pyzglpaceXuWUXZrJswPYrRl1qQ2AVXdhAO8LWd0s=
+=0AEL
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.4.pom.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+72114a46abb22e64f2eab9901bc771467b82c5b73f285b59348700620b544fea4518494a724e666473bc11a232e4d15ecbb01669dcde8cc347f806960a120d20
\ No newline at end of file

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

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

Added: release/aries/spifly-1.2.4-source-release.zip.asc
==============================================================================
--- release/aries/spifly-1.2.4-source-release.zip.asc (added)
+++ release/aries/spifly-1.2.4-source-release.zip.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POfsACgkQeumWDB+c
+ayX20BAAm5oRe5Hi9AhJCCPfI4Y81XHWdwYj76+gbelkmqPAoxzAimQSVvmh40P/
+gyIEbcBCPRs2I+IJKh+vd7hA12Br8AV+fI9nd6K2gzrwFSvAx16LX9dVSJXo8Zl1
+iwtHhZPZFgOpBAWxg9ghRRRboV3nOorrb2zquO4URLM4cC+GIpW1KXQtK+VL8MGB
+BlSW+NqDtZAmiJEymL+85/OZBHKoFsfxR2FipImG70oU0Vs+y0ij72oNFhK0QfgD
+X2I0qMKk7qGOT+DOpGD7s4/inFQSJnxSDITmQ4VLwA2Z9eB/MVWii3eTvY6FLeNY
+TEZMCrp3v7c93BjZO2tryXWJWv8gCFk5std8mPtuoH1SS5aknCxxoec65pFQtlQW
+zfvIZVKAiyi4/XeJDh5gwRXmTDEDijSYiO1znVEiZu4BNhXv7/WENKH8tagfjl/T
+XxHRc7kzhDLnv2IRzMqn//o64CRTHXefULwkU9kR8ydxiEwMHREOLJ6t/HnFrafb
+caasiBvX57Hyk29BiOeLENsdFsSb3BLc/Jzr//x2lZffO14WvQPPjcpiAcyq8p9h
+SXPd97BwmM8+91b4xB9v08BFeQQAs1LKfbWYuanMgUv0FpUsqFVtasRl9nfDT4vH
+uQq5PckBNmFJCg9qsTWTXK60qRaMRrQAPN13+hHIPa5R8T9yhJ0=
+=e5tX
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.2.4-source-release.zip.sha512
==============================================================================
--- release/aries/spifly-1.2.4-source-release.zip.sha512 (added)
+++ release/aries/spifly-1.2.4-source-release.zip.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+a0fc6e5626de6c52fb6cf826f9bb8dc479823075fef8971a6debce9c49400841b97e67cd8677451d785cfa69b14d92aa02fa341b2a43f5e9a0c048197ae1703f
\ No newline at end of file

Added: release/aries/spifly-1.2.4.pom
==============================================================================
--- release/aries/spifly-1.2.4.pom (added)
+++ release/aries/spifly-1.2.4.pom Sun Apr 12 18:52:53 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.2.4</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.2.4</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.2.4.pom.asc
==============================================================================
--- release/aries/spifly-1.2.4.pom.asc (added)
+++ release/aries/spifly-1.2.4.pom.asc Sun Apr 12 18:52:53 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl6POfsACgkQeumWDB+c
+ayWRuw//YukjwnSaG37X1mzaZ/azlgONRLxj+/aTzFAH840sK8XV0unUt4qr67Cx
+uY/Se1TxNj8319bEG61B2Pj8EaTEQHmB23umKk7ZB0kyUr0FVd8g2Pc4YNiZW0b0
+Mbe15l44HwqfA2x7KgPhPdtftT/TwCKpRIJOmnqy0NJNZCTnn8OVpDTiUG/nYu9b
+uru2PtrE39HneCg4XRt1dVba8AIdc09Jprg//XfKhytguD6P7kHWP92LBPzyg7BG
+IS9r9T5J2XJVonkYcTU2WtvkSmlquAj/I2htyDKenP3itZJkiAKGufg63D61qk0u
+u38Jjk80Yk0eqqOS9Rxb1lx8FWKsMmI+OSED0hFdQiWn6uVKuJJVzpnQNWknxvVA
+RryNLm64xZZ4IRsT097YOwc1EljWWRBxKsIkxvu41UqeEyU4wezbKwj1sy6xat6X
+inawJCVC/iQDy/b0fkcfrlXdLNaJAGAUVaeLSjwvgETMTi583gietRWU3eN/R9PD
+2V01X3CmylL7T0TJ2qNlGgeWEmy+rRuuV+2jD0ga1rupNK4EE/gLreswF69aen/Q
+wv6wo3LoOCxvEM6E3xYsOpcq1NHtkFaNIbJPsyYdI7JE6zUN/EQJpfNreFHTtKZd
+9XIZj3Zr0mdRDBdVZ/Y5W1UuFz1zwayPAYR80v5VxWXwsTcbjAE=
+=EYL3
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.2.4.pom.sha512
==============================================================================
--- release/aries/spifly-1.2.4.pom.sha512 (added)
+++ release/aries/spifly-1.2.4.pom.sha512 Sun Apr 12 18:52:53 2020
@@ -0,0 +1 @@
+30f1edd1df202406c11c02ba23ed7ff37ec98d4d9708c8e3caf8cdb0bf76be0641e3d0bfa2412669991c1e48d67a9275fd2fb718ead8baf669a71038d1294ddf
\ No newline at end of file