blob: 7d905425dbd3204561c27f9692f4074d968358a3 [file] [log] [blame]
Sai Gandhama7f4def2018-07-02 22:37:37 -05001<?xml version="1.0" encoding="UTF-8"?>
Sai Gandham25129102018-11-06 11:29:31 -06002<!--* ============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 Gandhama7f4def2018-07-02 22:37:37 -050020<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 Gandhama7f4def2018-07-02 22:37:37 -050022 <parent>
23 <groupId>org.onap.aaf.cadi</groupId>
Instrumentalc7014072018-11-07 11:21:03 -060024 <artifactId>parent</artifactId>
Instrumental4a698c22019-02-22 13:52:58 -060025 <version>2.1.13-SNAPSHOT</version>
Sai Gandhama7f4def2018-07-02 22:37:37 -050026 <relativePath>..</relativePath>
27 </parent>
Sai Gandhama7f4def2018-07-02 22:37:37 -050028
Instrumentalc7014072018-11-07 11:21:03 -060029 <modelVersion>4.0.0</modelVersion>
30 <name>Shiro OSGI CADI Plugin</name>
Sai Gandhama7f4def2018-07-02 22:37:37 -050031 <artifactId>aaf-shiro-aafrealm-osgi-bundle</artifactId>
32 <packaging>bundle</packaging>
33
34 <properties>
35 <sonar.skip>true</sonar.skip>
Sai Gandhama7f4def2018-07-02 22:37:37 -050036 </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>
Instrumentalc7014072018-11-07 11:21:03 -060050 org.onap.aaf.cadi.shiro*;version=${project.version}
Sai Gandhama7f4def2018-07-02 22:37:37 -050051 </Export-Package>
52 <Import-Package>
53 javax.servlet,
54 javax.servlet.http,
55 org.osgi.service.blueprint;version="[1.0.0,2.0.0)",
56 javax.net.ssl,
57 javax.crypto,
58 javax.crypto.spec,
59 javax.xml.bind.annotation,
60 javax.xml.bind,
61 javax.xml.transform,
62 javax.xml.datatype,
Sai Gandhama40c48d2018-11-12 17:21:54 -060063 javax.ws.rs,
64 javax.xml.ws,
Sai Gandhama7f4def2018-07-02 22:37:37 -050065 javax.management,
66 javax.security.auth,
67 javax.security.auth.login,
68 javax.security.auth.callback,
69 javax.xml.soap,
70 javax.xml.parsers,
71 javax.xml.namespace,
72 org.w3c.dom,
73 org.xml.sax,
Sai Gandhamaf9711a2019-01-21 09:23:27 -060074 javax.xml.transform.stream,
Sai Gandham3bcde262019-01-21 11:01:42 -060075 org.apache.log4j
Sai Gandhama7f4def2018-07-02 22:37:37 -050076 </Import-Package>
77 <Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
78 <!-- <Embed-Dependency>*;scope=compile|runtime;artifactId=!shiro-core;inline=false</Embed-Dependency> -->
79 <Embed-Transitive>true</Embed-Transitive>
80 <Fragment-Host>org.apache.shiro.core</Fragment-Host>
81 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85
86
87 </build>
88
89 <dependencies>
Instrumentalc7014072018-11-07 11:21:03 -060090 <dependency>
91 <groupId>org.onap.aaf.cadi</groupId>
92 <artifactId>aaf-cadi-shiro</artifactId>
93 <version>${project.version}</version>
94 </dependency>
Sai Gandhama7f4def2018-07-02 22:37:37 -050095 </dependencies>
Instrumental85f33092018-09-07 10:48:27 -050096</project>