blob: 95b8589e95af696c6ced04782c7eba19895e2afd [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
33 <groupId>org.onap.aaf.authz</groupId>
34 <artifactId>aaf-shiro-aafrealm-osgi-bundle</artifactId>
35 <version>2.1.0-SNAPSHOT</version>
36 <packaging>bundle</packaging>
37
38 <properties>
39 <sonar.skip>true</sonar.skip>
40 <cadi.shiro.version>2.1.0</cadi.shiro.version>
41 </properties>
42
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-bundle-plugin</artifactId>
48 <version>2.5.4</version>
49 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
53 <Bundle-Version>${project.version}</Bundle-Version>
54 <Export-Package>
55 org.onap.aaf.cadi.shiro*;version=${cadi.shiro.version}
56 </Export-Package>
57 <Import-Package>
58 javax.servlet,
59 javax.servlet.http,
60 org.osgi.service.blueprint;version="[1.0.0,2.0.0)",
61 javax.net.ssl,
62 javax.crypto,
63 javax.crypto.spec,
64 javax.xml.bind.annotation,
65 javax.xml.bind,
66 javax.xml.transform,
67 javax.xml.datatype,
68 javax.management,
69 javax.security.auth,
70 javax.security.auth.login,
71 javax.security.auth.callback,
72 javax.xml.soap,
73 javax.xml.parsers,
74 javax.xml.namespace,
75 org.w3c.dom,
76 org.xml.sax,
77 javax.xml.transform.stream
78 </Import-Package>
79 <Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
80 <!-- <Embed-Dependency>*;scope=compile|runtime;artifactId=!shiro-core;inline=false</Embed-Dependency> -->
81 <Embed-Transitive>true</Embed-Transitive>
82 <Fragment-Host>org.apache.shiro.core</Fragment-Host>
83 </instructions>
84 </configuration>
85 </plugin>
86 </plugins>
87
88
89 </build>
90
91 <dependencies>
92 <dependency>
93 <groupId>org.onap.aaf.authz</groupId>
94 <artifactId>aaf-cadi-shiro</artifactId>
95 <version>2.1.0</version>
96 </dependency>
97 </dependencies>
98</project>