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 2019/03/12 00:56:47 UTC

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

Added: release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom Tue Mar 12 00:56:47 2019
@@ -0,0 +1,238 @@
+<?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.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:svn:http://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1/spi-fly-static-bundle</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1/spi-fly-static-bundle</developerConnection>
+        <url>http://svn.apache.org/viewvc/aries/tags/spifly-1.2.1/spi-fly-static-bundle</url>
+    </scm>
+
+    <properties>
+        <bnd.version>4.1.0</bnd.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
+            <version>1.2.1</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>biz.aQute.bndlib</artifactId>
+            <version>4.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.framework</artifactId>
+            <version>6.0.1</version>
+            <scope>runtime</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${bnd.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.version,
+                            aQute.lib.collections,
+                            aQute.lib.io,
+                            aQute.libg.generics,
+                            aQute.libg.glob,
+                            aQute.libg.qtokens,
+                            aQute.service.reporter
+                        </_conditionalpackage>
+                        <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>
+                    </instructions>
+                </configuration>
+            </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>
+                    <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>4.1.0</version>
+                                            <type>jar</type>
+                                            <classifier>sources</classifier>
+                                            <overWrite>false</overWrite>
+                                            <outputDirectory>${project.build.directory}/upacksources/bndlib</outputDirectory>
+                                            <includes>
+                                                aQute/bnd/header/*.java,
+                                                aQute/bnd/version/*.java,
+                                                aQute/lib/collections/*.java,
+                                                aQute/lib/io/*.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.1.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBesQACgkQeumWDB+c
+ayXCzQ//S/dwWbS6wip5N/nB6mCa4Bb7FYrcMRELSmU7IBJN00U85iEswskYRL23
+Pclq6YaZYllHqTOj0i6eG0NmVg2Ikh+mjhXs9RpAtfGELo6S2vrJ9jfWvXV6E5Kn
+r4PiHTl6LBHz8IVOjYE2PQPRjL8F8b5ItuoCGvOgkBq3R/fkBK+lJePIb0lDH7vV
+Wz1RAO2x7IZfm9NsdxalAiwAxNUo4cWWVnbUzX4MvMtOYw/wt5uCaFPwrg8GMCAz
+BqcCvYE0lsNZgl69b3Kxt9rTyDWpzzkMWeLtT9rusGqekdSV/xY9uNW+Nb7Q+Vlj
+NvpGbzWV3a06Mw3kYwXsi9pUrSHtZOj/RwxEaWlefhYrd+YkB0QObY/jerErwFdM
+fM+uIH7XjPlcJiI3PR4aTc/LkrHCkT6OA0Xo4U3Rm/ArMjyF/lCtuTMLd6qTP68r
+QW2fedxtkWeahLWqZ/eD1PeVv15CXsOAYqYkvfRkTAEKs5vvw/t0HMctq66aVRbb
+ZC7TMo1s5W6n352nSRWakyvN4gB4BK07o/Ok0NSJs+cr3p6EeykKw5653d67paOA
+Y8F3WFEnHErGSar3+zKFhxldy2wUSWjY8auz8LpG0X9G+aMVpa5Yqgy+7xp6sHKs
+40RtWTVWZjjy0je38dKj2JesLxG4wBaQvgbqwMydgSdz3mfRahM=
+=LVkc
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.bundle-1.2.1.pom.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+7f7b506fa9222668ed314a44f08623c3ed764d708725d13b4f4c32df049c367915b8c60c891e873ccacf479ce8c473eeef84e2411e637aec792f18173ab8ca26
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1-jar-with-dependencies.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1-jar-with-dependencies.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1-jar-with-dependencies.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBergACgkQeumWDB+c
+ayU+AxAAiqx7tpOv3WAtqNapk9UL9UuQsxxBkNV4HPhV6es+bKLJ1MG2hac+w0bX
+eOeBX6u7Gw4ELdr70tXOrleFqUvmFpr1F2GBpMdZrvZzs3oJaAGSaeVhZwbYoopA
+95Z5Mh+woXQKF/D/gvLljpf1rAsXmM/6zF9AosTgRPpnxAENpUhfAsekArJZBXMI
+2klyGYcWDFs1n3Wcs8sDZi3WHTQTTNQa5N/HY3Ug/dH7x8lyiLVGTPTAg+1JkiOn
+oKbXh1TIiqASqvLsZvVON3c3900VlG1Wiari6F2j6hHaTNrxWt3gs1HxZbk45vqR
+gXrDiW7INDeDJJd4V0t3x6BhBNH0+Je0hYayxMbONunuciw8sH65vLWZ08xszdvS
+aTdh56qLcY/BHfdEozhV8V8lWSDhUxfPP0c9GXBkV4SMeuUlktDhc5zXrTlj4Hnk
+0SNGxDsJbb7IU8R41R0TOq+wJ3KTrFrcZTS3pWViiTpMkZrsEaPvFkBCWQ8OUj+X
+rvebJ/ex3MbYRYJt+XPzA6zTg4ggrTTFm/dxKYWdKDdLRYLLHnWTir90//DcASMC
+odWveYAmrpPWsYx1nidfjxM/UcEb2tUcEkS7ABgEUGZmgbviWTelC7XYken1kty1
+xpogBDFKUg246OrFNHDn66w4LkeSqulaZ4UB12Cj0jyG/XHLNRw=
+=wuSK
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1-jar-with-dependencies.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1-jar-with-dependencies.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1-jar-with-dependencies.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+133c8c60d602f2036670798d0c31b8f1054d0127b9e5a16706e6fa760b2ea4dfb9b8ff6c01d2309dd34ff7734ac87971e851c02df9103dbc9bd9e64d47ab9237
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1-javadoc.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBergACgkQeumWDB+c
+ayW3dw//ddUgkMoQ4NShC57Lu00lU0Z1eSxBB2JqmvSlDuzrSDkxHUSjWm60t3QL
+04ZOI8sf+aIK6co6cZzlVXqgrfFm8B6hdx+SpQ4eOsboQzi6MBC1fwJ5h1NG3Dhb
+Zd7fEAbZNddgAM8CZe03M1pz65Hsi75YF69baM8FEMaJ/F0DQxQlALk8iGZc3lvB
+BmDmq2kqMv0l0gPhWMc5RHzJPoVVF3c2U3sgpDuZRYMjutCCaFzSBvZcC4v8xEZz
+pzFJF5XHCGPZN88RrebsdGBdw2VHMHKDrWiAJoaDNrSIgT4wQmJZffpF/gv0WCnJ
+wWd8ZgIfxSpWLZ0PTUQkzYdqXq1ZcCIIFBlpLcl2mTcHe5T0agsC0YP9EnabJD8B
+iRZffFnetvgkmUB+1eXiYklCNS8IdMKvz+2blRct+e79BRTMMjsjFTY0S0LYysLp
+hFRP6zC/OR6HpO09k/x1BE0BNe3BN+nGlxajrGMLbzbM0pdX5Mh0eUIXl6SrL34/
+H7p1RPI0BoTP97HPayMFcvGwV0sbZj+Y9s7kUHe9IAvhzjmb3UBapfuwkE6L2kY/
+11NhWV8nFn0QZu+PTOBto0IP+4765L7h5LvHL5QO8PlHzRsDA1ZX6xPZWuQUAedx
+um66y3+/rpy0LxcOR3oHx5DmBYRPfLY2lBLtM17e84+ds7NNy2I=
+=P8iu
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1-javadoc.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+6f527a7b1c89df25d71f49682bdee3ab76debf57768f807e68333b52ad35c5d5a16da78e93818029ed16c3d78ee91fed680a72d19c1ca17bb28f603e917ccba8
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1-sources.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBergACgkQeumWDB+c
+ayUyAA/8C/nRYmx0eQJZJEWCCAkxhhRaVf7p3hIELUqGXFsHzWSgIS4fApkzZ7GF
+iR2w+yMDnKWE4NGhgE+bE2LAeVgZS84W9t9RdyjmrIlbruEbw/vpaD6OuzayJh9o
+mpLPD5h4vOcMnnLCiStYxj5uEMpMN5gEXfUDn8Eh9jwJoB2cP+jKTi1PmAQEi9bo
+SMD46ySk2Kjjn7eBiFpfmr3mJJTMkF+2XeVDYW+iWw3jgfkx1zjgxFkDKEFboksb
+xwhtZV9RNDKN+zNefy9vwlAXZiQnS7V10lhySPDFgr6TFevT4q7S4RZr92THg/rn
+Tx5a50xPqv6ikiluk8JbLStmk7cIL+4q/apF4Ksb+A7zlCiItAShHY4AdGjmjjIK
+fehhrn/tiw1kqirZ7nPUBVEwpQ6dAW3jmFnvSqaBWFIJWIJuzlKbP9FHgM4GQPUM
+p7YODxhWsicvD7E31WLyEVDGuqj3/TsbOaYDnQuRMchKOYDbF8eW7gzepPsXnAPB
+UC8Lw9cmHO2atNffTF/1NRoqC1X635ByEJUeOXu3CW31ow5IqG8UM9V6kLAtEkTe
+nOGpHjAOnW8UtL2RnNseM1/FIYoZY7MRt2taCYK81+TQG52/E0kTbNmpOze/b7Pe
+a0Fk2chqwL7NJ3mJHJmOjLHXHD7qN/nKYcahOLJWBpK36wR9y1c=
+=TgM0
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1-sources.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+6d6527470fcd098e6c6afdf23c5131e11a5509c68a6ebba21cd8b6a59aa2ccdccbf58bc78898f1a4490eab89bf3a85e598ba3ad47a3aac3fa649c05f1bb3c81f
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBergACgkQeumWDB+c
+ayWViw//XacF3lVOP/B+6jjlDrofxGYFccR0P5Hf/DM11cagv7Y6/yALoWKqQi1U
+TKxwEyxC+Xw9gbNmv6RnqMlSL7Vj8DHKWTtvYj7I5wUbrKd91vrc76Sde0m/eARW
+83qVLUlctlRRZ+wzTCp1e/K6HDbGDtRdII0+SjiyOTClCEWH2nRD9Lla+lGKYe6k
+wo3erNMQHNqjZn4ub3VvS1IlRxPnoo/8BIv43UVx97bawppoOUUgv31VqTjezWS6
+yUVtQcyhwrTMCpFYS88z7WC35XaCRsIPQuGSr6P/DSHLcyImsVo5G2KZCvu0XUUC
+8T0gQ0nIfzFPR6C+v+XjQqGJX+40gZ1mNSwMWvA4fsf+7zQt21e7OinkQ4d6DPud
+yOUkakv0WM5S+qtH78ND5lku78UgwpGwY1fL/80DAjXquHinhcaVNBfUYwB463Ow
+7aYSRiNpFGIibOBDeeXjxoXBi2yCXf2Bvpb9tXtyvLvnCGAiQ/FhUxbSjWJVH6i4
+skD32I/fQakTQtFNnntdBBVIavd92CYFgcYVFRtPhnwQ2s6fjaB6e3nt8uVuUDNd
+Eriy8kXtHSEhGJ109m7pr9EDhekrqjSPpcfvUsQL2WBiwVQByOyicb3LHfBqZ3c5
+HkCYG29cFrqcisBRMHZ9hBMfvqv4T3w4DJwdBWe661MXjG8Ps38=
+=rsIr
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+8d207f19211ab68b1fa2900815dd5a9d406c4b6cacf2bfbca0a1576a96dd9ad01e1012873e916cb63a5480ba85f61ef6a5e7f715adf4616f694212d8ee5d5f18
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom Tue Mar 12 00:56:47 2019
@@ -0,0 +1,105 @@
+<?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.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:svn:http://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1/spi-fly-static-tool</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1/spi-fly-static-tool</developerConnection>
+        <url>http://svn.apache.org/viewvc/aries/tags/spifly-1.2.1/spi-fly-static-tool</url>
+    </scm>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>7.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-commons</artifactId>
+            <version>7.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
+            <version>1.2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.weaver-internal</artifactId>
+            <version>1.2.1</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>
+    </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.1.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBergACgkQeumWDB+c
+ayWLvA//ciFmzCrIdysZSzDfKkrrSiY9J60Qwgb2l/IUjVybCq1JiGWH6xM9G1vF
+uTniHr+j0lbi9iZ4tOuXvDyyZiP7TACGFqxVDL2vqnW4tzrzbmZ03VwZ9B8iwZas
+VWJB6Mn8gWSSRspaO1xCLAKOuMA6xW7NxkbcM0xeNweE32EqzxVVsnIwb/YDhWhs
+DwZNh+pxX+LvzGlxq/E+xJ5tIy7C0cmkpHN7zgkHnys5wLAckiANKR9+rdZikBbK
+DvTSaD/IIlPJsd4zwDwdMD2D1Xlqg/9d2yOFKIwnOQOpsgTL8UhsTWyQAoTW1LjB
+rd0YPLn1kVKPzr/DXFDCkxMcdNC0JXV7RG+RpW6hxHoMnvEhCXlzlttcWeY4KiDP
+aPet6jRVOWUGfXayxLq904zddUJ8dkToEgYTqFPdcG2Ef/otTOCSwnQPgwxi5Brp
+4LR183+u+sxdGlCQQdJWVL4VOHDIthCVJK5AypaGvzz5rjh0ZeGvwJgreB5I3vz4
+T4sOkzfm1MR9mkscXwRnWwBg6/p2nkF8SOxTl2EEeRxuuZN0lJg8w2/22dASafAU
+2ny+vh3ips3GsJR+8npxL4fpG0sIKvd16wJSUOQER3CjsTyHDfM3b20Yt6JIWJEP
+lgvxXTBwONqI5caUX0zboN2vOGaapuTxSjtbestGRgKPdzesrjE=
+=RHBa
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.static.tool-1.2.1.pom.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+2f2f69e7c53a34e4dc4bc88a4d8f0eb9e6c10013e5793574866a2ef16c88862c63cc136e91609c5c900af6f0197a9bdc51897e580516ed8538dc2de757a28c39
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-javadoc.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-javadoc.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-javadoc.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBepAACgkQeumWDB+c
+ayX6cw//fJ6/Xbuwfz6QFlvVqdCfofHVwbKwWV9yDicANhO+faMhpvaiwMXmFnNt
+/5vqDS38M44vUUUyibSadsCxwgaYwJtvynpHeXWTP92+PuvFIy8WDXL0qyqYp2Ff
+9Me/jYkMjlgJgRthgCFL/DSTGwtI94prNK8sSi8T+pdsHGe7wKeQg8FidI2w5Pax
+thXkKRHG6nEgcs9ckRW3h8eyLuyad1XycrVA0lgJHUD240eyajmfhOp7GK3ngMXe
+wKRjYIiLqP8GnPWIOTN0KXVGGUFUwS4INWiFxRU1dpF4xKl7dRhz92rGkprOamLT
+v6ac1OzVW3BBAXpf+Ru9VaLYFtZwFxctnbHQKWgOVX8QyATNrptvGnnoAL4kARYk
+E8KQnyIYjCg7KKy6h6VAk85DwaSE+y38vM0oWxX7WEL0xzBa0uiHQ3CAssek3AF3
+1qR5dn7cB8/O2xpEOzN1ghPIwrLtVbq4Ui4TSu2IxzUxF+/xvMPChOVD0EhbzGTp
+Ryy54a5zmMgB/ugEQ1BAmw1m3GbuSdvSTD/MJnB9g/UBM3HzFWKw9weNqAeMbDbA
+9V+xPWQN8S2TpplYzichVtJsuk2Zu9QccNR6Nu6mQYgk6flA+l7IjfSe4TFEvFqX
+FPBkL1ZbEgHAQrLfPzzo1S9Zfyjb2MApEx3qPFpZFYs7H9Wt5yA=
+=DCKC
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-javadoc.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-javadoc.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-javadoc.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+9a73f4f7f8a2ce94080c06d2397e97b56da68bd1cdbd4b558e3d6a10e8bf1d2148fa76b066d19ff6c0203f6b12191bfbd8cb3fc14d376b0738c17025f425ae55
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-sources.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-sources.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-sources.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBepAACgkQeumWDB+c
+ayWvWQ//cyrqKMoS8Bzj/zSmmAN4/hsp2bFJVG+DfSn/MwrE3c5pPmkNBsa1JAC3
+XMM9dCIWTs1PAIFVtx+q8G9Rj+Dm5Ag+r/IBFKaeYxnVz8rMlwnIEjvgCBRMiph/
+jbaA4devGg1Ddmnss28MNsNH8rkZgL4fs/nouUEBUIo7Yz95OtcrUaTOG5BC3h0G
+417FSQnctWPjN+efktMqktyu+/Ho89RFXuTwzcw8eSnicmZv+HZrbzeF/C4ui9Ml
+DZdFGZxAHuc6yA/jNxL/WrhdOqOH9ZQ1b03gDPLTDzuG4Fgjw4cfQe9Al8F6GVUR
+U9a6JPmy2Gz2eeSCebQTgvvvtPf5t4dEmG0DKAOcWzvGtEhuUnvSKwDPJqqU6l1k
+c60TbtcS2++pv1/fgMXlyfOCUw5e6amnIt0v31wIv/e9z1SyLeOb/jgwhCCbUIbn
+PCTDs0n3E3GYlcGxH+1AzReVUpa1I+qrUcmawyhsuiK6fBNPUhvKlVZYd94GGguf
+tCVBV3tpnAj1YqWUhvmNSeSMUFcIJcSND5CARZR20CwcfUmtUHj7x6g8MWgCnfko
+ja3obynFBfAF0vLrBAmkCqckRAi2qpJDLtCMsTCmJ7eYA5u8SBsVTtqFmsYsWAsA
+WT2KEUIiM4DqzDhan8RK9KRr+pLwDQI0Cm/Oh3mb25MydgE5Cmw=
+=7GHf
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-sources.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-sources.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1-sources.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+ac0d964f303efb67bef5118f85da0a7d467a0148bc20bb6e5d783789c0936f3e9a0ffd8cacc1727cd78b0f2062adca4e00209e5f83282d01f62efa7243a3f181
\ No newline at end of file

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

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

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.jar.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.jar.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.jar.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBepAACgkQeumWDB+c
+ayXegg//Ui1ws/qM9WWOsrglnUYVkY82+iVD+twsekLkYnAs7+MS4JU6LNSi6+xX
+z8hpGA53gmYajPl0ZSmKgPGUUO1NF8hxkucxbiLw+kLnXtr220PnMGl33ET07xOL
+0xlNvdxPftdZlAs2C3VeG4nazlQMFE9D2H2K0ZnOKXuLOdTmDjAO+7ohSChp0fQP
+1wi0zFNVH3tCl/xRPxCxzWIi2GmlRa94OTgA/BbWnmSV+yi7EPD0BlFgf0bJeT1s
+Odav8x2Kp1cvidS+Y2IODnQyPbrYRR6Gs2yqwVuPb59p7M0T4ADkz5Q2C12+StCB
+57TssXBGrK1aS63AB1C+Li8haaf57O9fRbp0lruB4fHd9KQjOcyTwHsfeR/MwaOa
+eWG5qvtSV97/tbuzpIAd4YOmVjAsJDL5JYlmYdpJxIgKaUtKr4a6L0T/oVMmiPAe
+pE6KqiZW+EUqg2FHCOqd7krdNYhqKdB5+aCMAmjTfpEVsEr9h27MFGKs8BJN7nQJ
+bXEXlMrMoFdPCfcmkPfkgk3ovqAd85UIdEnNnQj/UIZBQB1SFTYwudiQ7oXoYo5K
+GKLFWpnYBzrEeLiij0yGcaoBKqybyGqx6goAUu90yDxTMNULknxmJD0ppBmrPr7g
+xqZWIVdXS2MU1Ecm2vhr6IlK63217lgxH8e7lV3gToAmm82mjbY=
+=cHRa
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.jar.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.jar.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.jar.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+3c0a33888e433d79d93000fc0f1ea1c6ea0f5420f7df8ccf67e05f6cc8dbfabda249f15dd2c0ebfbec294a837276ba04d03e90f41e20b5159e8d402ab59a8ad8
\ No newline at end of file

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom Tue Mar 12 00:56:47 2019
@@ -0,0 +1,74 @@
+<?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.1</version>
+    <packaging>jar</packaging>
+    <name>Apache Aries SPI Fly Weaver (internal module)</name>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1/spi-fly-weaver</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1/spi-fly-weaver</developerConnection>
+        <url>http://svn.apache.org/viewvc/aries/tags/spifly-1.2.1/spi-fly-weaver</url>
+    </scm>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>7.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-commons</artifactId>
+            <version>7.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.spifly</groupId>
+            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
+            <version>1.2.1</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.1.pom.asc
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom.asc (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBepAACgkQeumWDB+c
+ayX4yQ/+J8X36ZJwcYdRg0arKSBmTYObOncZufqzRrwLj8ntoqJuhjnOx6E77G9R
+WhhxKZS5+XHvKP3fTie2HPsu6JWkT3XXc4diwjJNG4ZaR2ApFN2TLo809QizhQWL
+uxT3KBDHAcn/TGOtFV8cB1fzZg6qfBYXuSfqDaNOomFDZlHY9pO1FbbwEUfmQ1Li
+5vVGUPGciQOILBsZXtnnJstMiay5Mn12Fj6j43HMgc4FQOOiCgqtyjg/Oka/Un4N
+Fih6tvmIHGctlAXxqkTka7/zCVKr4WdD1U54v4RiF/28Kl5wIVAlKJCEgke5jh1+
+MXUI+UU3VbyeCs/cM+/oB7gzQw0qK41hV+HanqEbLfPCysdABZf5jXRyF11S9W5o
+CCYFykw2if2fjgxoWWS0vgXvBy2iGzBwVnAikXEuhdvwbx/nP4t6zNPFE7heugKq
+i2m/JJF7VjtsfFamlGBYwxl0jI53hw9nTDGBuICR/qBU+3G8ioD6JUx0cPL+Eptw
+N5h6Vw2YbwV18GMRb/EbphgvuaxnLGQPzPPdn2npu4nkLYQCtpLw+XiBqeEoqIS8
+25TUisjqFeSKiAsUbhlY9xcUSgdAzRsASFqNHoAMz92puz+4+gR5TGpdIgDf6fiw
+vaCVu7P2L+RatQQFnPqRAxpLdbP7INIbDuK6JHEx4sN+LOZgYSw=
+=Rirn
+-----END PGP SIGNATURE-----

Added: release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom.sha512
==============================================================================
--- release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom.sha512 (added)
+++ release/aries/org.apache.aries.spifly.weaver-internal-1.2.1.pom.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+2164b57c8607171230e3443964c1dfe029267bde1c38c98dddde14b0171e1b0ed949cb3bc4defc681732e83c3c6f31bb97a5cad7f4ad1e5e98e4ec0ed0e8c5ed
\ No newline at end of file

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

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

Added: release/aries/spifly-1.2.1-source-release.zip.asc
==============================================================================
--- release/aries/spifly-1.2.1-source-release.zip.asc (added)
+++ release/aries/spifly-1.2.1-source-release.zip.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBesoACgkQeumWDB+c
+ayWV+g//TdclrqjTYAjHEVE7tC26RYr77NXJvXwqZc6r0QI8Ou4d5dqUyepYO0Gt
+pA28RBA+07B+HxrfG5rcGq+EBx2lPofJYXY33RtfIZEZX7Oe5r3B+KJKoc/REGyt
+JKI2yxxnlSpQyUZX/Ae6jWS4cJcfZANTQmglKvPf1dzWXvZuYFqbFxlABsaNdij3
+1Sk61hu/AIP/HRY+4XnZdAf/sxUQq0dfiNAkJnOGK9RZUCprQlcUjRE1n3lxc8gQ
+6e7XvNliH9OyNBwZGUrcpE4roo8HrUUQTtG/+cL2FPjXF/zDDoylNoiqRTq649zb
+krzsEeKfH1+AIDdETNtCHb31MOrZNaWvvYbcpiZOvw41gKhiR3M+lPfr7yLHi02J
+ZNTM0kOI6V/tjfVXtXbySUxUcUocszBuAkvL+gjOTDJTWVo+SByxTCX7W+s4eDBN
+HLJ2vufGi9MYg2Jy2wDxpEe17ZPKmnXUxv0uKMQFcQBKmbzeIKMJSxhSxKXf5Taw
+PFwnc9xkXyqn1mN8jM2DGIpJ7s4sjVvZVhIHj9aVX35skJ/rv965HjtGJb+NXBvG
+F0tIJjGZ4Xb/BXkxpl72mO8QcFihWZKnih34FSuWnYCyHK78GjKeXuVPVMrJuyK0
+u8DMvR2jo5tdCDFYTjkhEsTuzuEF8rkMC6thpJ5CPGia+nx3YtE=
+=g6np
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.2.1-source-release.zip.sha512
==============================================================================
--- release/aries/spifly-1.2.1-source-release.zip.sha512 (added)
+++ release/aries/spifly-1.2.1-source-release.zip.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+98f6a79f3e02258594aa78c5c0fa7f7d36a7a5ffd09b6d23340de3c6fc24d277140bed16d9a5eb0dbfa31dbb3624a0ef9aaa317392cbe2e50154e5166b75daaf
\ No newline at end of file

Added: release/aries/spifly-1.2.1.pom
==============================================================================
--- release/aries/spifly-1.2.1.pom (added)
+++ release/aries/spifly-1.2.1.pom Tue Mar 12 00:56:47 2019
@@ -0,0 +1,122 @@
+<?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.1</version>
+    <packaging>pom</packaging>
+    <description>
+        SPI support for OSGi
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/tags/spifly-1.2.1</developerConnection>
+        <url>http://svn.apache.org/viewvc/aries/tags/spifly-1.2.1</url>
+    </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.1.pom.asc
==============================================================================
--- release/aries/spifly-1.2.1.pom.asc (added)
+++ release/aries/spifly-1.2.1.pom.asc Tue Mar 12 00:56:47 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEYFMhvCcG1Xz8eD0ieumWDB+cayUFAlyBesoACgkQeumWDB+c
+ayUOtg//R8vpdwE8iLaZId9ENwJy2yxbO1O3QXG2jYlKfFqPI+guIon5Rh69Oquw
+uIhgvbY5Ow7fb5MllPrAZ3ZZ/F69qz8SUvrdN010MlIN6pxpNzgW3B05zKVzkmpI
+gL0etWwnGQYkrWrXgVVy8h6eXCqfVxFy8aUheZUyGd94XYBke3DfQSxEm19rhKef
+VnSSBkxH/E8KsRFXRz1vnu90kHKcbVYagDwL/RebkpWh73hT4JNiZNETazTyUAk4
+Rb8EoQd41KQqBFWW+zDPPTJS6Jsvf9DCfs+4BQJ/HIitGfR3HZyH9cPIGpxlSCzN
+Z7bE8tnalUj4qe4e1qtM2EEqYIjFCCQbSU4xTs+xKS0LKhd/a4V86+YrwKuuB7Fz
+cz0iIWGTewGlnV6XpUQmmBGYYMHuSSgrt8FfSXscq4N7pe4TQBP0gH6WW+WeLrhs
+TwhCe+NqUWEwDLpHY/qgDco/gLNSN2O81PhPJ3aYuia+Pmgj7t/nqxwmfT3e5iOp
+7g9OFW7pUgGTn9UqKMc3h8PkEYGe4I8TMrALyGECCtuOIovXwxTapA1Z9WFZATew
+JoLbUwsIF5VfJEQI94yt4+Bqm6208ZO5bneiOIpIm3l/eFozz2ZJk/w6sWR0QX2n
+T57WImLzKK4Q4GgM9aSnFVqyFXM+xO7Sno2t1PZi15KyE+csUps=
+=44pY
+-----END PGP SIGNATURE-----

Added: release/aries/spifly-1.2.1.pom.sha512
==============================================================================
--- release/aries/spifly-1.2.1.pom.sha512 (added)
+++ release/aries/spifly-1.2.1.pom.sha512 Tue Mar 12 00:56:47 2019
@@ -0,0 +1 @@
+56acc2f5fbecf05002453443f3b37d0863745e9dd018a461bd0eadd08bf45d3204322c1cf2c8c4be66db67b7a8b8acc6051ee44f22654ffeb6b395671d551a7b
\ No newline at end of file