update license in cadi repo
[aaf/cadi.git] / shiro-osgi-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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     * -->
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">
22
23         <parent>
24                 <groupId>org.onap.aaf.cadi</groupId>
25                 <artifactId>cadimiscparent</artifactId>
26                 <version>2.1.2-SNAPSHOT</version>
27                 <relativePath>..</relativePath>
28         </parent>
29         <modelVersion>4.0.0</modelVersion>
30
31         <name>AAF Shiro CADI Plugin</name>
32         <artifactId>aaf-shiro-aafrealm-osgi-bundle</artifactId>
33         <packaging>bundle</packaging>
34
35         <properties>
36             <sonar.skip>true</sonar.skip>
37             <cadi.shiro.version>2.1.1</cadi.shiro.version>
38         </properties>
39
40         <build>
41                 <plugins>
42                         <plugin>
43                                 <groupId>org.apache.felix</groupId>
44                                 <artifactId>maven-bundle-plugin</artifactId>
45                                 <version>2.5.4</version>
46                                 <extensions>true</extensions>
47                                 <configuration>
48                                         <instructions>
49                                                 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
50                                                 <Bundle-Version>${project.version}</Bundle-Version>
51                                                 <Export-Package>
52                                                         org.onap.aaf.cadi.shiro*;version=${cadi.shiro.version}
53                                                 </Export-Package>
54                                                 <Import-Package>
55                                                         javax.servlet,
56                                                         javax.servlet.http,
57                                                         org.osgi.service.blueprint;version="[1.0.0,2.0.0)",
58                                                         javax.net.ssl,
59                                                         javax.crypto,
60                                                         javax.crypto.spec,
61                                                         javax.xml.bind.annotation,
62                                                         javax.xml.bind,
63                                                         javax.xml.transform,
64                                                         javax.xml.datatype,
65                                                         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,
74                                                         javax.xml.transform.stream
75                                                 </Import-Package>
76                                                 <Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
77                                                 <!-- <Embed-Dependency>*;scope=compile|runtime;artifactId=!shiro-core;inline=false</Embed-Dependency> -->
78                                                 <Embed-Transitive>true</Embed-Transitive>
79                                                 <Fragment-Host>org.apache.shiro.core</Fragment-Host>
80                                         </instructions>
81                                 </configuration>
82                         </plugin>
83                 </plugins>
84
85
86         </build>
87
88         <dependencies>
89                 <dependency>
90            <groupId>org.onap.aaf.authz</groupId>
91            <artifactId>aaf-cadi-shiro</artifactId>
92            <version>2.1.1</version>
93         </dependency>
94         </dependencies>
95 </project>