blob: d72a75ed459382d7376962eef7af45caf84fe994 [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>
Sai Gandham01deccb2019-01-16 13:18:56 -060025 <version>2.1.10-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)",
Sai Gandhamaf9711a2019-01-21 09:23:27 -060056 org.osgi.framework,
Sai Gandhama7f4def2018-07-02 22:37:37 -050057 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 Gandhama40c48d2018-11-12 17:21:54 -060064 javax.ws.rs,
65 javax.xml.ws,
Sai Gandhama7f4def2018-07-02 22:37:37 -050066 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 Gandhamaf9711a2019-01-21 09:23:27 -060075 javax.xml.transform.stream,
76 org.apache.log4j,
77 javax.inject,
78 org.slf4j.impl,
79 org.slf4j,
80 org.slf4j.spi,
Sai Gandhama7f4def2018-07-02 22:37:37 -050081 </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>
Instrumentalc7014072018-11-07 11:21:03 -060095 <dependency>
96 <groupId>org.onap.aaf.cadi</groupId>
97 <artifactId>aaf-cadi-shiro</artifactId>
98 <version>${project.version}</version>
99 </dependency>
Sai Gandhama7f4def2018-07-02 22:37:37 -0500100 </dependencies>
Instrumental85f33092018-09-07 10:48:27 -0500101</project>