blob: 578a1b66f656e306bf704be59fa97aa1b81a7930 [file] [log] [blame]
Sai Gandhamb0d41052018-04-19 18:46:02 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7 * ===========================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END====================================================
20 *
21-->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24
25 <parent>
26 <groupId>org.onap.aaf.authz</groupId>
27 <artifactId>cadiparent</artifactId>
28 <version>2.1.0-SNAPSHOT</version>
29 <relativePath>..</relativePath>
30 </parent>
31 <modelVersion>4.0.0</modelVersion>
32
Sai Gandhamb0d41052018-04-19 18:46:02 +000033 <artifactId>aaf-shiro-aafrealm-osgi-bundle</artifactId>
Sai Gandhamb0d41052018-04-19 18:46:02 +000034 <packaging>bundle</packaging>
35
36 <properties>
37 <sonar.skip>true</sonar.skip>
38 <cadi.shiro.version>2.1.0</cadi.shiro.version>
39 </properties>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <version>2.5.4</version>
47 <extensions>true</extensions>
48 <configuration>
49 <instructions>
50 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
51 <Bundle-Version>${project.version}</Bundle-Version>
52 <Export-Package>
53 org.onap.aaf.cadi.shiro*;version=${cadi.shiro.version}
54 </Export-Package>
55 <Import-Package>
56 javax.servlet,
57 javax.servlet.http,
58 org.osgi.service.blueprint;version="[1.0.0,2.0.0)",
59 javax.net.ssl,
60 javax.crypto,
61 javax.crypto.spec,
62 javax.xml.bind.annotation,
63 javax.xml.bind,
64 javax.xml.transform,
65 javax.xml.datatype,
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,
75 javax.xml.transform.stream
76 </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>
90 <dependency>
91 <groupId>org.onap.aaf.authz</groupId>
92 <artifactId>aaf-cadi-shiro</artifactId>
93 <version>2.1.0</version>
94 </dependency>
95 </dependencies>
96</project>