Download org.apache.aries.spifly.dynamic.bundle-1.0.1.jar file

Introduction

You can download org.apache.aries.spifly.dynamic.bundle-1.0.1.jar in this page.

License

Apache License

Type List

org.apache.aries.spifly.dynamic.bundle-1.0.1.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.aries.spifly/org.apache.aries.spifly.core-internal/pom.properties
META-INF/maven/org.apache.aries.spifly/org.apache.aries.spifly.core-internal/pom.xml
META-INF/maven/org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle/pom.properties
META-INF/maven/org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle/pom.xml
META-INF/maven/org.apache.aries.spifly/org.apache.aries.spifly.weaver-internal/pom.properties
META-INF/maven/org.apache.aries.spifly/org.apache.aries.spifly.weaver-internal/pom.xml
org.apache.aries.spifly.ArgRestrictions.class
org.apache.aries.spifly.BaseActivator.class
org.apache.aries.spifly.BundleDescriptor.class
org.apache.aries.spifly.ConsumerBundleTrackerCustomizer.class
org.apache.aries.spifly.ConsumerHeaderProcessor.class
org.apache.aries.spifly.ConsumerRestriction.class
org.apache.aries.spifly.HeaderParser.class
org.apache.aries.spifly.MethodRestriction.class
org.apache.aries.spifly.MultiDelegationClassloader.class
org.apache.aries.spifly.Pair.class
org.apache.aries.spifly.ProviderBundleTrackerCustomizer.class
org.apache.aries.spifly.ProviderServiceFactory.class
org.apache.aries.spifly.SpiFlyConstants.class
org.apache.aries.spifly.Streams.class
org.apache.aries.spifly.Util.class
org.apache.aries.spifly.WeavingData.class
org.apache.aries.spifly.dynamic.ClientWeavingHook.class
org.apache.aries.spifly.dynamic.DynamicWeavingActivator.class
org.apache.aries.spifly.dynamic.OSGiFriendlyClassWriter.class
org.apache.aries.spifly.weaver.TCCLSetterVisitor.class
org/apache/aries/spifly/packageinfo

Pom

org.apache.aries.spifly.dynamic.bundle-1.0.1.pom file content.

<?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.0.0</version>
        <relativePath>../../parent/pom.xml</relativePath>
    </parent>

    <groupId>org.apache.aries.spifly</groupId>
    <artifactId>org.apache.aries.spifly.dynamic.bundle</artifactId>
    <version>1.0.1</version>
    <packaging>bundle</packaging>
    <name>Apache Aries SPI Fly Dynamic Weaving Bundle</name>
    <description>
        This bundle contains an extender that facilitates the use
        of JRE SPI providers (components typically plugged in to the
        JRE through META-INF/services resources).
    </description>

    <scm>
        <connection>scm:svn:http://svn.apache.org/repos/asf/aries/tags/org.apache.aries.spifly.dynamic.bundle-1.0.1</connection>
        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/tags/org.apache.aries.spifly.dynamic.bundle-1.0.1</developerConnection>
        <url>http://svn.apache.org/viewvc/aries/tags/org.apache.aries.spifly.dynamic.bundle-1.0.1</url>
    </scm>
    <properties>
        <lastReleaseVersion>1.0.0</lastReleaseVersion>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.ow2.asm</groupId>
            <artifactId>asm-debug-all</artifactId>
            <version>5.0.3</version>
        </dependency>

        <dependency>
            <groupId>org.apache.aries.spifly</groupId>
            <artifactId>org.apache.aries.spifly.core-internal</artifactId>
            <version>1.0.1</version>
            <exclusions>
                <exclusion>
                    <groupId>org.osgi</groupId>
                    <artifactId>org.osgi.core</artifactId>
                </exclusion>

                <exclusion>
                    <groupId>org.osgi</groupId>
                    <artifactId>org.osgi.compendium</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.apache.aries.spifly</groupId>
            <artifactId>org.apache.aries.spifly.weaver-internal</artifactId>
            <version>1.0.1</version>
        </dependency>

        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.compendium</artifactId>
            <scope>provided</scope>
        </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>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-Activator>org.apache.aries.spifly.dynamic.DynamicWeavingActivator</Bundle-Activator>
                        <Import-Package>
                            *
                        </Import-Package>
                        <Export-Package>
                            org.apache.aries.spifly*;version=${project.version}
                        </Export-Package>
                        <Private-Package>
                            org.apache.aries.spifly.dynamic
                        </Private-Package>
                        <Embed-Dependency>org.apache.aries.spifly.*;scope=compile;inline=true</Embed-Dependency>
                        <Provide-Capability>
                            osgi.extender;osgi.extender=osgi.serviceloader.registrar;version:Version=1.0,osgi.extender;osgi.extender=osgi.serviceloader.processor;version:Version=1.0
                        </Provide-Capability>
                    </instructions>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.aries.versioning</groupId>
                <artifactId>org.apache.aries.versioning.plugin</artifactId>
                <executions>
                    <execution>
                        <id>default-verify</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>version-check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.apache.aries.spifly</groupId>
   <artifactId>org.apache.aries.spifly.dynamic.bundle</artifactId>
   <version>1.0.1</version>
</dependency>

Download

If you think the following org.apache.aries.spifly.dynamic.bundle-1.0.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download org.apache.aries.spifly.dynamic.bundle-1.0.1.jar file




PreviousNext

Related