Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Sai Gandham | 2512910 | 2018-11-06 11:29:31 -0600 | [diff] [blame] | 2 | <!--* ============LICENSE_START==================================================== |
| 3 | * =========================================================================== |
| 4 | * org.onap.aaf |
| 5 | * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | * =========================================================================== |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | * ============LICENSE_END==================================================== |
| 19 | * --> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onap.aaf.cadi</groupId> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 24 | <artifactId>parent</artifactId> |
Sai Gandham | 01deccb | 2019-01-16 13:18:56 -0600 | [diff] [blame] | 25 | <version>2.1.10-SNAPSHOT</version> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 26 | <relativePath>..</relativePath> |
| 27 | </parent> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 28 | |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | <name>Shiro OSGI CADI Plugin</name> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 31 | <artifactId>aaf-shiro-aafrealm-osgi-bundle</artifactId> |
| 32 | <packaging>bundle</packaging> |
| 33 | |
| 34 | <properties> |
| 35 | <sonar.skip>true</sonar.skip> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 36 | </properties> |
| 37 | |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>maven-bundle-plugin</artifactId> |
| 43 | <version>2.5.4</version> |
| 44 | <extensions>true</extensions> |
| 45 | <configuration> |
| 46 | <instructions> |
| 47 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 48 | <Bundle-Version>${project.version}</Bundle-Version> |
| 49 | <Export-Package> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 50 | org.onap.aaf.cadi.shiro*;version=${project.version} |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 51 | </Export-Package> |
| 52 | <Import-Package> |
| 53 | javax.servlet, |
| 54 | javax.servlet.http, |
| 55 | org.osgi.service.blueprint;version="[1.0.0,2.0.0)", |
Sai Gandham | af9711a | 2019-01-21 09:23:27 -0600 | [diff] [blame^] | 56 | org.osgi.framework, |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 57 | javax.net.ssl, |
| 58 | javax.crypto, |
| 59 | javax.crypto.spec, |
| 60 | javax.xml.bind.annotation, |
| 61 | javax.xml.bind, |
| 62 | javax.xml.transform, |
| 63 | javax.xml.datatype, |
Sai Gandham | a40c48d | 2018-11-12 17:21:54 -0600 | [diff] [blame] | 64 | javax.ws.rs, |
| 65 | javax.xml.ws, |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 66 | javax.management, |
| 67 | javax.security.auth, |
| 68 | javax.security.auth.login, |
| 69 | javax.security.auth.callback, |
| 70 | javax.xml.soap, |
| 71 | javax.xml.parsers, |
| 72 | javax.xml.namespace, |
| 73 | org.w3c.dom, |
| 74 | org.xml.sax, |
Sai Gandham | af9711a | 2019-01-21 09:23:27 -0600 | [diff] [blame^] | 75 | javax.xml.transform.stream, |
| 76 | org.apache.log4j, |
| 77 | javax.inject, |
| 78 | org.slf4j.impl, |
| 79 | org.slf4j, |
| 80 | org.slf4j.spi, |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 81 | </Import-Package> |
| 82 | <Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency> |
| 83 | <!-- <Embed-Dependency>*;scope=compile|runtime;artifactId=!shiro-core;inline=false</Embed-Dependency> --> |
| 84 | <Embed-Transitive>true</Embed-Transitive> |
| 85 | <Fragment-Host>org.apache.shiro.core</Fragment-Host> |
| 86 | </instructions> |
| 87 | </configuration> |
| 88 | </plugin> |
| 89 | </plugins> |
| 90 | |
| 91 | |
| 92 | </build> |
| 93 | |
| 94 | <dependencies> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.onap.aaf.cadi</groupId> |
| 97 | <artifactId>aaf-cadi-shiro</artifactId> |
| 98 | <version>${project.version}</version> |
| 99 | </dependency> |
Sai Gandham | a7f4def | 2018-07-02 22:37:37 -0500 | [diff] [blame] | 100 | </dependencies> |
Instrumental | 85f3309 | 2018-09-07 10:48:27 -0500 | [diff] [blame] | 101 | </project> |