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/10/15 14:55:35 UTC

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

Added: release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom Thu Oct 15 14:55:35 2020
@@ -0,0 +1,280 @@
+<?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.1</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.1</tag>
+    </scm>
+
+    <properties>
+        <maven.bundle.plugin.version>5.1.1</maven.bundle.plugin.version>
+        <bnd.version>5.1.2</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>
+                    <bundles>
+                        <bundle>target/${project.build.finalName}.jar</bundle>
+                    </bundles>
+                    <writeOnChanges>false</writeOnChanges>
+                </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.1.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUdYACgkQeumWDB+c
+ayUr5A/+IIAGXD3PXu6HDrBzhw0mkQ7mTPiO77oC1KRuO6SGew3sPrpqWguryRxx
+xMrZe91kUc1hWjjqDUT2qFDAqpZwZD7PuYh7jgi+noXrmSAl6ijdeBbOREX8L+I6
+XzhZ1bQ4JQ5qbU7ikcA53M0IZY0BOylw6V4BUSdeg3gqn78XQ4CzfHhOLWquShb7
+hjDq+9uaSuR0ZYBsJ244bMZUfMVnKY12HbnY9DdckXKoAhx82j6zy+in7aoRLpI3
+nQlEd4EVdHtlC83BlXJn+qh5nbyGi01WPdSap8Sk+gzBf3QX4Yd17BToss4YTlDM
+uWtFVAe4dqreE80HlYjsuXn+vVQLNT4yT5ptF7fA/kOWsZNA1hmhcmwFivWuUeot
+aJGGHPg2IFQiV3zBXahMVXROlEybif/8nT7Ntfyd7ux9oEEzFsz47jhvMxtouyW+
+5h4NBV0d89vg4TM7bZVmbeeU62nxKf2xS1LAfsOueyqOKJ1jCaJVbNDYJjR+xQNq
+LVy8VedPpblypXnI2GBbcakkKn6awpWAO+e5X6hIeHFT0zEYJV9aFlPDZr4mzaMy
+deZ1KJClr3iYnwFa0wwscFxoS+h02UHm2QO+INlkGW10iuozHCHrK1vLQPLUHP7J
+IKPs1ImIvbDJx1+bZvTUHiuOXCvJ6efkVlcOxQ6SRX2Byy8ho34=
+=P/iO
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.3.1.pom.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+28b3a4ccf31c03bcfbf8dcffe8c5fc3f987e05da96be80835999da2f47a21f32eb69b0958b1f1aa7b096c0207ccdd8074858e56a9202d67acced956a93890c3d
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1-jar-with-dependencies.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1-jar-with-dependencies.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1-jar-with-dependencies.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUckACgkQeumWDB+c
+ayWHsw//YrLpugxBoikyjg5DyeQVqa57CwmZTxRXybG4L2xTtxeP8XqS9LK0vQZm
+of8Xa1BCpv5enrJboqko14RLhhObaS20bRKeWtX7Xcw4EhB/BSK1ymuRiEDTNcqm
+TZ8Yt9DlH0Dck8AhT3TXAg1V6y4CsB1BZ075Nd9ikvSTwiKxfhLI6AKqkjsErmnv
+T6jG8SwXACrlp4o70XwAgUvG4UsfCmU6Kxg2xQtdQsFH1R/SrPrKVd4ICeKlj47O
+uJubOmYGYGkQ2KiZOMcipY2nF6+wpwHjdd2KALgv4Zdg9mSWVT+4xVJHVeKNp24e
+8+ScWsJfIO+7XCT2HwaAcPsn81TJye7+ZKogpmus2OoGZelILkH4aF80axBkI/dd
+/kEEt7CNpB4uXMMSkXiQ/Wz3HDlf2+hsjZR2DzKwPFfbZofCIc5TCSBslZUDBqW1
+5E9EAErnSzzKoTGAjv0BXK8LJzpDd0dJA414mgRqiEFMEnHyzLm8V0Wtpb07pUPk
+W8S15peE0IXZzDVLZ5I2ncm3ksZgjWgB6t9ZemnGA7Jm8lXKRMmlEeO0Jr5gwj7f
+RO4J4Gh2FsIeClK4VJ1FZWwCwdKOk30ngwn4X298T082lvIP1CpLAoDAzqjQOsdd
+p5k7nSJVX5pnfKGWUP3Af64YfSrfdShwgScIFPYPTMkXC8sO8LU=
+=iMbt
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1-jar-with-dependencies.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1-jar-with-dependencies.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1-jar-with-dependencies.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+261a1e96c5b5bb674d91a9cf1cc244280bf2854e41e7597264db291dc53162baf3845561c50297ccefbc07684dac71c043b72b3bfc91d8797cf253ab557c5ab7
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1-javadoc.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUcoACgkQeumWDB+c
+ayVvww//bExPYKwLlw0dUsv+dCXy6u5uZNW0oBtexUNUOZ5+yeKybR6qdORhinvs
+5jvMGqwLLy69w5qJd3ovTBiuuobGJodHt/kb1FN3+cN3Pv6d0Xjg2oBtSLLee9k/
+YDbOMTCEvztdGibOuN5teXFMOwey9F+IrPSHtvYyI8ysr4QGwa5m7TPj9HKTLEOH
+DyRvPUOwVOngVkiSZt9eKcleM1OdK4dTZeLiWmIPJvdR/7fIwpHup/+0sj30TlE9
+Jhugv3v5Ct/4sGulF99AaXBQ8TNrt0eyA6i7056qIB04Y5zz+3lzSzLIfYOp/Gch
+DhCyldU9Q3TlAbRlF0VSxX6Hdju2JjmyJX3uhN1OoaDdTxN8lT66gZgbxkGjnOdg
+8n0NI3RQN9UnIrJtO5jUgHs9MSlr0wWU3ZTgN7kXqTeqv0XJAyVYIfD2nwLmgveN
+a+dX4ZxXcuDgugT0NT+ARE+B1FG25nxIQ3mtupmsaaKcAwcX1GiS3kzepoD5BB33
+KcQIkWTpywoCrZD0l2SbY2H30wFB2aM1kTyMu8j+0/UGibVlJ22omTVGnoUEPxp3
+5NZhO1VZpsJ25u7UGxjc4sGvFN1aBfynsibqWpyMfaKD87dnnml+N2/7JKmQYPU6
+R6+D4auw2tuYLedl9Kmjozrs95msgmrfNlE3vEFN52ZcsTq6u8k=
+=uFVx
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1-javadoc.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+dc5d58dc361ed249a887e2eacd7dbd5007debcff86eb7b36e4ad2847bde4f14eb68bfe1e67882b5bdfc332eef29c369c518bbdb9d503f9357c5b16f0f1afcf8f
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1-sources.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUckACgkQeumWDB+c
+ayXs6Q/+JBqrtLpYofeJikKSWMpIKAY9BJHQZa1P7di3fh0VVWaC1nh0R7KVf3Fu
+kFj8HsZVcDe87WmwVfF0Mes4SzSKGO2tMvVzpoASdaXlEurKCmAgTyPDU2Xw3N3F
+heET74XoYv5WbA+XHMzXrEA2+zFUg8OsUuMFxnwFFDpyUZQmfZ71eadjzGDJtxbY
+2cbsrthU6ELvadeEOF1I0lkDvNaSiMfHGo8c1fSVo60MesmYgpedrRh7olgW9cg2
+4bd+cBmY9WsNxC6je8gGesHAMNPAw1QFznM5rnAHyXm3xLr7IGg6cG55tvhixLa/
+/19wmL0LmkcKCubQ40og8giJ11T84cI/gIBAZgbs+aE3LxjqUUwQSi2siCWwp7wO
+8N/45Zn8BP8jOJz3sEbg9J8Toos5JS3oBK6NBx5QL3UoCNjRnWteK5ppyGCDs+Ep
+yMqIwM2t61Xc/i1819XU1sHRGKC7MBJsrZFwlq5/nu12PPimc2dpKApJqxeA6p44
+3WYmEazwT7TmCbd/63qZzCAqIlS9veu121JDYv41+V7MOhYHZM8dJ8w7J87gzepm
+BA0RdpfYAH1m/OhAS1sf6PSN0aLNHzfWtJvMlByXYz/F+qe5A0E7ALWdGtgs5XdA
+S+ONFuxKLY/NAvd64e23COYs90fkKSwF9KoADKshGkBKuIhZbiI=
+=QJh8
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1-sources.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+79e0cea96e6381ba213ad17ea857ebbcf637c295fca6fefefd8e6f8181a665ea8ded4b46a37523e47e74882d268f1986ecd07295c7ee278aea6468e67119db40
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUckACgkQeumWDB+c
+ayU4jw//fZPyHn5RfQ5w7BrZH6xMk3DHCYF2ZkGci64L0MoYxM6IQzMY0w+YmhOi
+aVHELMlgVe+AOkhxHne4mnCdaQaPa3skzpdWK1RCEZbH45ao9B0ADEX+wvSDptRR
+xJRLY7wM5pFG5ux8ytDMJp+RIR1jooxKe2xS+HePd0bpOnGa57fHoItITFZv7tyI
+dD3aM5U2TwHJDmEWFK3cLaN1mN3qkYnf0NYxhY0WUwIVM8U90QH4O0GTPWlpbKjJ
+iEUFCl4xGiInyG2dXuiGui0yFME/lNEljeLTTt/i1EW9rjJOYA9P6AYbCWBoflil
+0AvsZt/4HXlAPwtoPrCiMtTBkmtt7zJK2oWRgvt0u80k0K6DjpRjf71ZJ0Sp3qXX
+VqcWGzZLMLK/wvP7ENuKLyy3XpGjaDdaj4QLqh+sP/A60bwgyMFjEiE895n96OWG
+ULwe9c74/YWtJujZ3b0Sa7QIjWqchSpYS9nwWmz5lT1H52geuD/ei7rMjS3TCoOG
+554JkwDcvnX2ir7LCy63al1C2dOXkNK1l44OBUrs6QdanNUoPATKS6dQrdlTbElL
+2OIAyLdrWXYVHR9capo9ui2HQMvew0f/jB36GnvD0LXVxofPjKHfSmfQZbjA6T5I
+XjGDlcxfFXCt6HyIYeQphc5L4/tQJL23w9WQfdlXypAnesFXeVA=
+=7EKE
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+c18cdf227e4e6d40a7d7123d1ab2c31c9ebe3ab678238b6cd1767c363c4ab85e59037ec8c390b7194d4f27b88cc1de4bfcfe65218a3bd8d3e8ef422ade8cc714
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom Thu Oct 15 14:55:35 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.1</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.1</tag>
+    </scm>
+
+    <properties>
+        <maven.bundle.plugin.version>5.1.1</maven.bundle.plugin.version>
+        <bnd.version>5.1.2</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.1.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUckACgkQeumWDB+c
+ayVchw/8DTS/e90nY5VAuGl2I2QbWRZnkjFIeolfez62ggt/Oi7+0esACBSRtQqc
+iR6Kh1VF0UaCTWzweIz/lGkjPSje6+z+Dodxz9ye+MS+y6A2lja+coXxDsTGXlpd
+MpA9XHx/SeJHkdxUfDzayEWgl1AdRyRft+DzGEBKkuvo7JBgVWOC/4U1nDhIHlN6
+iecy+HbIqfs8JeiOcxwdhxGrZ4BuseTNtHNXYRG2lnNonLnY47sjYaz8uPIMC40a
+zOpBZirhamIjXFiZPBeC0wFawh0rdJ/EXzDe5mZ14LGr3VIwjvFTaNN1eE8ypHvB
+NWIz/Q+nNkgDPAJMc+ixySh0PYQobHDrd/zsIieBboX7RGOfo3ywwZubqigwF8XN
+jLDCqYQ+6jawS86RLge+LRDqNuWOmECxK6DEyLdwsNdrGNIAnScqEKauBtC7wsTi
+X0UPoV3XdLt5pLWwN5qmfJYjfexhsSHAUalxdv+1qJsBvhZIq3GrZGfqlOIAZbSS
+jAfAHaax2BeH/Sbhki/CKzORhhwb+g7Oa1kpoxHWIGpN2prdQ1mFuLhFu7WdSGuI
+/OTYR3/N8yvg1JTAMewTW/4M59aZ9p3NM1VhErcMNAdvkod8ahz+n8PkqyYjFmsa
+GV9WaBMBVnUWp/FrzfMkNHAC7TPwZW8WiPDTwko1sZZ5gwk61+s=
+=/7zb
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.3.1.pom.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+0a69db12d95b576f6e2800ba3b3d44ee31905f1d14ea4c182aec806fe49b54e111e9885f4a5c7d54d11473103d43af39bf99b6fd39636b47efb3f9b2e8de8597
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-javadoc.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUaEACgkQeumWDB+c
+ayVOkA/7B+VgW0r3ppJgnGJBnpgIE3hGgkJDnbDNeBrBcJi34E/2gMSP1jS6tAMk
+AO1FRsZa+zVGJkt9mlCPo76Jmt9Pbd1IzBt5RHH7wALOS69cV3kWTcKR6eqR4t8r
+wtIJb6Ebm5Ykw0Qq6q3f9/Pk/TSh9xr5NjpMVTB+nF7WTOaLENLpqEAnWasOffGW
+7DIazsDwKQQCl/E9FRtx06IjVRy3DLS/vu8zqw9rmayfYSjtW6wxEIiJsqsnHgr/
+3C8xjcaH3sdCP5pMU2WSicPmw6QZW7rUr0/vm0Cr84DzPYKmuPeoFPRuIlBhYQCs
+FHm88lMN5IfQAhH0u9bjFg6VicEBf0s3B6d5UnxG00tJJFrwBkZrwBtIupU26wpg
+bemYbRLpmWJV2Ck3jfeTl0w9WGt44uZwzFcV7Yj/fT8UzdMybET5lrNE7RoqOgsX
+4yBh914AB4Jq+35Jtz/RzbCEXQCMvqrnAAK2kGdcNIWyeFEMUvsbgKH0kp3hI6lP
+Wh15n+EkAsZEpM0pVst3gQg27QxDZr+842zu/rbuxzZ+xprjB270goMx958j7uTT
+mOPsO3bDiiFV/obiv7+H1Ru8jzjPbszqpYTq3fC5Ldgfxg5W6CarW79ZIHvBSajZ
+c1eVZVZX0vFqnwKX5QA5glBRr1KfRu/L9fVDg4SiNf64ihkDvlY=
+=grE1
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-javadoc.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+4bfdbbd3d9b5e4b8072d35d074fbf901d665a95d058b926c0ad853abd421f98d92b35e1d52681572db41cd14e0494f757ff1418bc1e12960a1250f95c36821e6
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-sources.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUaEACgkQeumWDB+c
+ayWF0Q/+MLEfdnPTaqp2YacKdeqEc7mLt3Fkky5HrwIE9P22DSGpx3XFs0SFeL+O
+ZfgFEE4IxRssWX2KOMv/fe8x0MOgA/Bkui0MrUcHmNVxgo0XwTUIGQrkP5X0jx3A
+7SY1UbullCp0f/cFs3u3aZLzuoodP8V0V65HQeztb0vyVkNNnJyrEZc58XX++EkU
+Ah63j6Uj1nsmLJqE+IuIvE6O+SkViPAQMLlxKg2RPdnGBuS9MtmWH5UKYE75xFkY
+OIe7PVq8UyAPH9VS0D2UAVE9ZClmUY2ezbxDyFh0hKsgr2r0rb97SH2n9MoLGbdN
+KGmHG9baGnW80eGQiPxO8E910oRbhgEq5524RHz5jXsMuvl8F6IA6GYc52T01g92
+o5MrBQpwNMfGmC1vj1Tp3EqYtt+cahbFyQJHGu//LoInqnPCPNL26Nx+c0hysAVe
+tLA8gaDvMgc/H0EmGLkyfLgWLildyLtoce7wfaKwsse9o1bimFwe4GqVIRnyzNH0
+0TimhNALuAaS4zX5UGZRSK82eFsDw5zFK3BCIkOHLlOY35UrDunjweFudsVxDVD3
+frzaMgP1OIjGw33x8KoBfjKW1L7l6iTtOZB75W6bzaUnBtnq14Rm+ybZF/3Ubkk7
+SYJWoi5M+dxANoc582a15ekpl4Ysl9+bhy4qWHt0Oe0ihJlGvQ8=
+=GJnd
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1-sources.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+0242dc8b3057ebe87c3781e6cc9fca860b51c9c7c6983f4ea248967251d41c675102c35a87f78c91493041282254f1a04c595e144a98a005f8081e456a9d8921
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.jar.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUaEACgkQeumWDB+c
+ayUROQ//WGZLDfBmbJgbozveW0tqUIRllxfsZ+SBjW5/LZ1D32gCY4SyaI4gNDXH
+l7x1VsuMNl02boF5xdZaIWkR1IQLQ2ib53OUcmYckLm7p+3R8boXPWV5Cc7VCwjZ
+rHX+cV95EhXvrMJyUUcS3vwkgmuqP9j0Uj2i/1DXR1BgJn4nyrbLEhPZVAawNPDV
++GF/9KRWoMrOhqM9xzzeTQKsfuATZggbveaXfsgSQ99e/47B8X9AM1GTWzCwkbeG
+GTRT3X+0oYIWSVt0YqGJl5uQWNpsoPFRwLfF1kqb8ni5nyn6fIb9aHpONmEkFB/1
+m8fd5gZ3K8nv2OnqwGjKhQCyYkqnv9hE1+FmZza6eOiBr1b2NieFVZCyq/YdABPi
+PiqKP5+6pKTqYA2mnazYSydWaVXmomd7GdCvvtV2/5MQ7tDWsf4o+G9HhXKTAShB
+EIuMzZoMD3nBETCmTBfxgs/CtHfyjNsBxB6PSxZZxMQHA0daWcttvKT98mPff9SF
+v3DkVm3akyhqOHiuLACrbId3l/AvfHgsncZWx4powoPUhSv4FUu7lmNE4MQ9xIyD
+MX1/BFo9IIaGPr6T2QbMjVmBrjktJCxxMCOLp4xd/NTup2CPZdJ7dsNPC62JEFBd
+7X3BkYHJWoPL3feuderoSOUjkCEvZTpF5TCoPMsRqmCXN93eWL0=
+=ou1f
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.jar.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+a5f317a5d14209d919af1d70759ff3160550a7884a95c3116e6fe2d02ebeea308e724669eabfc5e4e5dd9422f1f84f69eb3198a28194a79a5773c3d382fcd678
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom Thu Oct 15 14:55:35 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.1</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.1</tag>
+    </scm>
+
+    <properties>
+        <asm.version>9.0</asm.version>
+        <maven.bundle.plugin.version>5.1.1</maven.bundle.plugin.version>
+        <bnd.version>5.1.2</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.1.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUaEACgkQeumWDB+c
+ayXwUxAAouy+0o5HcYvqzGk+bJyBw9IjaoehvpNETs1h1mgnDGoCUuvSvXgB2rlJ
+uXR70l9QVj5tes2GzHVTCoKgnYUyaswxi5/MelDVhcqXql/lpQKP6qL5pOWWVNc4
+MI/lvsiBzWTvrQvOZ8ODqtoQ59najrSyrB6E0MgYgFv/OoIQCvUO+kNOSrfZOAw1
+X5O/KKXbyd+I2IlRqgY0xehX66tqqibeaY5aMA5TUGpA7V3kclIDCwq1djel5Y0z
+DZS1VwmxGApadnhVVi/d84Hldi9DfOXfVMynuQEFpQUEzxVW/ARDh/x8/gB1XRcK
+7ufCL+k9zRjQdo1intZopbol7r+U4beQgS5IBGKQMj99HwMRviCGBA41hkr0P/oR
+Cjky4D8I9A+YIOOH/25nlkvpD84J6oj75cjJKkJRsqhkBzmf+IC8HrgCuhdySzMG
+w5NmgGBCNNURlpLw1RofJC14YdhXDCQRRcNLwMJ+HkeiLT4w0JPhMiNhHVgbpd+H
+BYMDXsQtk8cj5txybjbXMkCq+Eb2D7P46PrAbXrp3+B1KTiEQtNPpY7wf474kBK6
+D1VgMFjr1aNtGCz+U4kFSOpk6ryAyGd2kLzp7F4EYPeYMCsTi7NxUyfIaqLRpMGj
+A9mudnDoxC0ak51V9fuMKyGwDZMrVbTPl7snnn93qOj44Lr0Fls=
+=CzGo
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.3.1.pom.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+f47430cb277e345948de73a9d302aaddf678fdaa29fd5df1244fbe1508df06d3cfed24a5fd0ffe0f032489ba78b6b75322ecd471419e34ed387d93a14f221937
\ No newline at end of file

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

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

Added: release/aries/spifly-1.3.1-source-release.zip.asc
==============================================================================
--- release/aries/spifly-1.3.1-source-release.zip.asc (added)
+++ release/aries/spifly-1.3.1-source-release.zip.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUeUACgkQeumWDB+c
+ayX5ahAAtf3Cph6V838TJLqqm5IdAck8okPGQnMeu5ukg+FRScYjt4vMn/C58ge3
+RymAirjNJkj8l0LVGTpqCKohzefJI2zuAbO/aeTSgJb5pcFhpaQ5kqAci8JlHN1d
+YRIyBX+y6RBJjSn96S7z6PVFhg6NBSUrG+M25shNZK6b7NCOL5E4+uGfQaxZrXEO
+2dmczA0fG0SaJwVNUZGzntv1lPa6z3UdTQAXYUuZwAhv/SCXcakHNs2nyUK2cUnq
+Nm0oVA4cFfc/wJ7OfqHOAbJOdXDt1MYcCLihWkQ/okoWRfE5ufiECFlekieEAQz3
+297AmvNB0l+tXpXz09shfQJRjTHZyHZNe4avVkHkkHakMa3Z8CTaE8em9Iy6Nyyr
+LV1h4NqT9WqOVcq+HUsLm/9BqULuC+2ZvWJtVDm1NQksJEp6EgrVzmKRj/B0C8cy
+HrhwoB4XEjFaCvQd+NSwhRlR85x18CsP5V2QNjgh7IEEHAMBjPWU+GPRYfJNGJTs
+2h03tmLOnVXLnBQy99mjDdgROmy33MkonlSZkDTIA8dsUGaIEDqpd1VOd6yChMjr
+ItnNNCyYsfyWFItNXHpqUmRIhVkmc2A0wNtBPCWBdjGPQOAeB7c/8Qqf4RrZCame
+DDZvJZsN54h9X+oqGlsXrCI4DupL01U14O547tuSvQRa62MnK/Y=
+=xQv9
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.3.1-source-release.zip.sha512
==============================================================================
--- release/aries/spifly-1.3.1-source-release.zip.sha512 (added)
+++ release/aries/spifly-1.3.1-source-release.zip.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+25465d9ebe3c4b82708a2b9c08ddee4e52159ad3238fd86205d571ca8d22c0fcd507aa102c670f824c3c3b27bfde449b4a3e60960064428b1b9438e147cd167a
\ No newline at end of file

Added: release/aries/spifly-1.3.1.pom
==============================================================================
--- release/aries/spifly-1.3.1.pom (added)
+++ release/aries/spifly-1.3.1.pom Thu Oct 15 14:55:35 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.1</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.1</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.1.pom.asc
==============================================================================
--- release/aries/spifly-1.3.1.pom.asc (added)
+++ release/aries/spifly-1.3.1.pom.asc Thu Oct 15 14:55:35 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAl+EUeUACgkQeumWDB+c
+ayU0gQ//Ql/roMAPrt6GoCjrsWUQjc6q9NU5VACMmJw+G9FFMytqdThsWhh72nJq
+59pMspRBP2lQcG5UR+k96nBsXkfIMBGlf58iEpjjqdbIn2grjqkmPIWikUkmPk0y
+oEqF4iLqpDhd8pmfJQK9IrP5uDJ0sgoa19iMFHyt44gBc3ayt5nbI2FvjpXaj4GO
+x2LsHuIEeyX1A68/O17BsEzotU3w7tmanxsQldp7mHFZSxuQ0hkqCQKV/DK8AV24
+phzS4Y31aVIE/XKfA2lal8uUPm/eP9oQDexnIKucC8chUq5cTEThtnlcJ/T5PZMM
+zBjQuZw/ewJxIZCwekg8cm8LPE1EaaGtXg4emZ9Mxv8RjbtKwKhj1xoy4e7M9sLm
+Mk9HsDBPlAKN3GQddYgpDIj0oYigXbpV7iMZjHSBf/QIrcs1ieuYeSetmUATnjDs
+w/OlbQTY1ixeFYfOHwaxsbduIP+eMrKW2gI8KgmCoBkQBgE5T8GPBDEeXGCiO3z8
+qDnylzZZO7+Dh842qTkiMY5z2DtdDMLeVT86kVd8H/AWmoQRKZLRP+6vYQvT6Hoq
+tDBoJX6w/pycULkS8WfjADgyQ1Ybi34P7zxAEkgVI3xbV50m60PF+x5GQ2JXJ0I3
+6CjeeSMUMd68UFnr1hmrROolM6Q83+H6mNhtcnXWq9kUVL1NxJw=
+=nl0f
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.3.1.pom.sha512
==============================================================================
--- release/aries/spifly-1.3.1.pom.sha512 (added)
+++ release/aries/spifly-1.3.1.pom.sha512 Thu Oct 15 14:55:35 2020
@@ -0,0 +1 @@
+71452bc08aec83d0a5a4e66477d67cb53d9a1cae0caeade4a69cd7b4077805c6622af5de8dedfa5bc9769a682f91997ead5de8a580f90318be64bf0a4dba3601
\ No newline at end of file