Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Karl Pauls | feb48f0 | 2010-02-04 23:04:42 +0000 | [diff] [blame] | 19 | <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"> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | c2c5d9c | 2010-01-11 13:30:42 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Karl Pauls | be381f6 | 2011-09-22 11:13:37 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Richard S. Hall | c2c5d9c | 2010-01-11 13:30:42 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Security Provider</name> |
Brian O'Connor | 510c939 | 2015-05-20 14:55:44 -0700 | [diff] [blame] | 29 | <groupId>org.onosproject</groupId> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.framework.security</artifactId> |
Brian O'Connor | 24309a4 | 2015-09-04 14:45:21 -0700 | [diff] [blame^] | 31 | <version>2.2.0.onos</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 32 | <description> |
| 33 | This bundle provides an implementation of the OSGi security for Apache Felix. |
| 34 | </description> |
Karl Pauls | fd571de | 2011-09-22 15:21:53 +0000 | [diff] [blame] | 35 | <scm> |
Karl Pauls | d4d9311 | 2013-03-08 21:12:26 +0000 | [diff] [blame] | 36 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</connection> |
| 37 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</developerConnection> |
| 38 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</url> |
Karl Pauls | fd571de | 2011-09-22 15:21:53 +0000 | [diff] [blame] | 39 | </scm> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 40 | <dependencies> |
| 41 | <dependency> |
Karl Pauls | 12c46d3 | 2009-11-24 23:23:26 +0000 | [diff] [blame] | 42 | <groupId>org.osgi</groupId> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 43 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 3a74f87 | 2013-02-12 14:33:38 +0000 | [diff] [blame] | 44 | <version>5.0.0</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
Brian O'Connor | 510c939 | 2015-05-20 14:55:44 -0700 | [diff] [blame] | 47 | <groupId>org.apache.felix</groupId> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 48 | <artifactId>org.apache.felix.framework</artifactId> |
Karl Pauls | 093fd0f | 2013-03-08 21:11:43 +0000 | [diff] [blame] | 49 | <version>4.2.1</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 50 | </dependency> |
| 51 | </dependencies> |
| 52 | <build> |
| 53 | <plugins> |
| 54 | <plugin> |
Karl Pauls | 70c4bdb | 2010-05-30 22:16:56 +0000 | [diff] [blame] | 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-compiler-plugin</artifactId> |
| 57 | <configuration> |
Karl Pauls | 3a74f87 | 2013-02-12 14:33:38 +0000 | [diff] [blame] | 58 | <target>1.3</target> |
| 59 | <source>1.3</source> |
Karl Pauls | 70c4bdb | 2010-05-30 22:16:56 +0000 | [diff] [blame] | 60 | </configuration> |
| 61 | </plugin> |
| 62 | <plugin> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 63 | <groupId>org.apache.felix</groupId> |
| 64 | <artifactId>maven-bundle-plugin</artifactId> |
Brian O'Connor | 24309a4 | 2015-09-04 14:45:21 -0700 | [diff] [blame^] | 65 | <version>2.3.7</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 66 | <extensions>true</extensions> |
| 67 | <configuration> |
| 68 | <instructions> |
Brian O'Connor | 24309a4 | 2015-09-04 14:45:21 -0700 | [diff] [blame^] | 69 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Carsten Ziegeler | 90f0b9f | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 70 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Karl Pauls | be381f6 | 2011-09-22 11:13:37 +0000 | [diff] [blame] | 71 | <Export-Package>org.osgi.service.permissionadmin, org.osgi.service.condpermadmin</Export-Package> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 72 | <Private-Package>org.apache.felix.framework.*</Private-Package> |
| 73 | <Import-Package>!*</Import-Package> |
| 74 | <Fragment-Host>system.bundle; extension:=framework</Fragment-Host> |
| 75 | <Felix-Activator>org.apache.felix.framework.SecurityActivator</Felix-Activator> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 76 | </instructions> |
Karl Pauls | be381f6 | 2011-09-22 11:13:37 +0000 | [diff] [blame] | 77 | <excludeDependencies> |
| 78 | org.apache.felix.framework |
| 79 | </excludeDependencies> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 80 | </configuration> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
Brian O'Connor | 24309a4 | 2015-09-04 14:45:21 -0700 | [diff] [blame^] | 84 | <profiles> |
| 85 | <profile> |
| 86 | <id>sonatype-release</id> |
| 87 | <build> |
| 88 | <plugins> |
| 89 | <plugin> |
| 90 | <groupId>org.apache.maven.plugins</groupId> |
| 91 | <artifactId>maven-source-plugin</artifactId> |
| 92 | <version>2.4</version> |
| 93 | <executions> |
| 94 | <execution> |
| 95 | <id>attach-sources</id> |
| 96 | <goals> |
| 97 | <goal>jar-no-fork</goal> |
| 98 | </goals> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | </plugin> |
| 102 | <plugin> |
| 103 | <groupId>org.apache.maven.plugins</groupId> |
| 104 | <artifactId>maven-javadoc-plugin</artifactId> |
| 105 | <version>2.9.1</version> |
| 106 | <executions> |
| 107 | <execution> |
| 108 | <id>attach-javadocs</id> |
| 109 | <goals> |
| 110 | <goal>jar</goal> |
| 111 | </goals> |
| 112 | <!-- |
| 113 | The following configuration turns of DocLint which is enabled in Java 8. |
| 114 | FIXME This can be removed if/when Javadoc comments pass DocLint. |
| 115 | --> |
| 116 | <configuration> |
| 117 | <additionalparam>-Xdoclint:none</additionalparam> |
| 118 | </configuration> |
| 119 | </execution> |
| 120 | </executions> |
| 121 | </plugin> |
| 122 | <plugin> |
| 123 | <groupId>org.apache.maven.plugins</groupId> |
| 124 | <artifactId>maven-gpg-plugin</artifactId> |
| 125 | <version>1.5</version> |
| 126 | <executions> |
| 127 | <execution> |
| 128 | <id>sign-artifacts</id> |
| 129 | <phase>verify</phase> |
| 130 | <goals> |
| 131 | <goal>sign</goal> |
| 132 | </goals> |
| 133 | </execution> |
| 134 | </executions> |
| 135 | </plugin> |
| 136 | <plugin> |
| 137 | <groupId>org.sonatype.plugins</groupId> |
| 138 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 139 | <version>1.6.3</version> |
| 140 | <extensions>true</extensions> |
| 141 | <configuration> |
| 142 | <serverId>ossrh</serverId> |
| 143 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 144 | <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 145 | </configuration> |
| 146 | </plugin> |
| 147 | </plugins> |
| 148 | </build> |
| 149 | </profile> |
| 150 | </profiles> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 151 | </project> |