Download org.apache.felix.framework.security-2.2.0.onos.jar file

Introduction

You can download org.apache.felix.framework.security-2.2.0.onos.jar in this page.

License

Apache License

Type List

org.apache.felix.framework.security-2.2.0.onos.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.onosproject/org.apache.felix.framework.security/pom.properties
META-INF/maven/org.onosproject/org.apache.felix.framework.security/pom.xml
org.apache.felix.framework.SecurityActivator.class
org.apache.felix.framework.SecurityProviderImpl.class
org.apache.felix.framework.security.SecurityConstants.class
org.apache.felix.framework.security.condpermadmin.ConditionalPermissionAdminImpl.class
org.apache.felix.framework.security.condpermadmin.ConditionalPermissionInfoImpl.class
org.apache.felix.framework.security.condpermadmin.DomainGripper.class
org.apache.felix.framework.security.permissionadmin.PermissionAdminImpl.class
org.apache.felix.framework.security.util.BundleInputStream.class
org.apache.felix.framework.security.util.Conditions.class
org.apache.felix.framework.security.util.LocalPermissions.class
org.apache.felix.framework.security.util.Permissions.class
org.apache.felix.framework.security.util.PropertiesCache.class
org.apache.felix.framework.security.util.TrustManager.class
org.apache.felix.framework.security.verifier.BundleDNParser.class
org.osgi.service.condpermadmin.BooleanCondition.class
org.osgi.service.condpermadmin.BundleLocationCondition.class
org.osgi.service.condpermadmin.BundleSignerCondition.class
org.osgi.service.condpermadmin.Condition.class
org.osgi.service.condpermadmin.ConditionInfo.class
org.osgi.service.condpermadmin.ConditionalPermissionAdmin.class
org.osgi.service.condpermadmin.ConditionalPermissionInfo.class
org.osgi.service.condpermadmin.ConditionalPermissionUpdate.class
org.osgi.service.condpermadmin.package-info.class
org.osgi.service.permissionadmin.PermissionAdmin.class
org.osgi.service.permissionadmin.PermissionInfo.class
org.osgi.service.permissionadmin.package-info.class
org/osgi/service/condpermadmin/packageinfo
org/osgi/service/permissionadmin/packageinfo

Pom

org.apache.felix.framework.security-2.2.0.onos.pom file content.

<!--
 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">
  <parent>
    <groupId>org.apache.felix</groupId>
    <artifactId>felix-parent</artifactId>
    <version>2.1</version>
    <relativePath>../pom/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <packaging>bundle</packaging>
  <name>Apache Felix Security Provider</name>
  <groupId>org.onosproject</groupId>
  <artifactId>org.apache.felix.framework.security</artifactId>
  <version>2.2.0.onos</version>
  <description>
    This bundle provides an implementation of the OSGi security for Apache Felix.
  </description>
    <scm>
      <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</connection>
      <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</developerConnection>
      <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</url>
    </scm>
  <dependencies>
     <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
      <version>5.0.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.apache.felix.framework</artifactId>
      <version>4.2.1</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <target>1.3</target>
          <source>1.3</source>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.3.7</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
            <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
            <Export-Package>org.osgi.service.permissionadmin, org.osgi.service.condpermadmin</Export-Package>
            <Private-Package>org.apache.felix.framework.*</Private-Package>
            <Import-Package>!*</Import-Package>
            <Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
            <Felix-Activator>org.apache.felix.framework.SecurityActivator</Felix-Activator>
          </instructions>
          <excludeDependencies>
            org.apache.felix.framework
          </excludeDependencies>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>sonatype-release</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.4</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9.1</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
                <!--
                    The following configuration turns of DocLint which is enabled in Java 8.
                    FIXME This can be removed if/when Javadoc comments pass DocLint.
                  -->
                <configuration>
                  <additionalparam>-Xdoclint:none</additionalparam>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.5</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.sonatype.plugins</groupId>
            <artifactId>nexus-staging-maven-plugin</artifactId>
            <version>1.6.3</version>
            <extensions>true</extensions>
            <configuration>
               <serverId>ossrh</serverId>
               <nexusUrl>https://oss.sonatype.org/</nexusUrl>
               <autoReleaseAfterClose>false</autoReleaseAfterClose>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.onosproject</groupId>
   <artifactId>org.apache.felix.framework.security</artifactId>
   <version>2.2.0.onos</version>
</dependency>

Download

If you think the following org.apache.felix.framework.security-2.2.0.onos.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download org.apache.felix.framework.security-2.2.0.onos.jar file




PreviousNext

Related