blob: ea0fd1bd39a45488dce44799b09b1fc897bf81c1 [file] [log] [blame]
Michael DÜrre934dbb72021-02-09 08:14:07 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10 ~ ================================================================================
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 ~ ============LICENSE_END=======================================================
23 ~
24 -->
Michael Dürreccea5262024-03-14 11:54:26 +010025
Michael DÜrre934dbb72021-02-09 08:14:07 +010026<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28
29 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Dan Timoney308bbcd2024-09-23 11:30:35 -040032 <version>2.8.0</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010033 <relativePath/>
34 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Michael Dürreccea5262024-03-14 11:54:26 +010037 <artifactId>sdnr-wt-oauth-realm</artifactId>
Dan Timoney10bcf612024-09-23 15:48:50 -040038 <version>1.8.1-SNAPSHOT</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010039 <packaging>bundle</packaging>
40
41 <name>ccsdk-features :: ${project.artifactId}</name>
42 <licenses>
43 <license>
44 <name>Apache License, Version 2.0</name>
45 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46 </license>
47 </licenses>
48
49 <properties>
50 <maven.javadoc.skip>true</maven.javadoc.skip>
51 <checkstyle.skip>true</checkstyle.skip>
52 </properties>
53
54 <dependencies>
55 <dependency>
56 <groupId>${project.groupId}</groupId>
Michael Dürreccea5262024-03-14 11:54:26 +010057 <artifactId>sdnr-wt-oauth-core</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010058 <version>${project.version}</version>
59 <exclusions>
60 <exclusion>
61 <groupId>org.opendaylight.aaa</groupId>
62 <artifactId>aaa-shiro</artifactId>
63 </exclusion>
64 <exclusion>
Michael DÜrrecbab1f42021-11-03 14:17:33 +010065 <groupId>org.opendaylight.aaa</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010066 <artifactId>aaa-shiro</artifactId>
67 </exclusion>
68 <exclusion>
69 <groupId>org.apache.shiro</groupId>
70 <artifactId>shiro-web</artifactId>
71 </exclusion>
72 <exclusion>
73 <groupId>${project.groupId}</groupId>
74 <artifactId>sdnr-wt-common</artifactId>
75 </exclusion>
76 </exclusions>
77 </dependency>
78 </dependencies>
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>maven-bundle-plugin</artifactId>
84 <extensions>true</extensions>
85 <configuration>
86 <instructions>
87 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
88 <Bundle-Version>${project.version}</Bundle-Version>
89 <Export-Package>
90 org.onap.ccsdk.features.sdnr.wt.oauthprovider;version=${project.version},
Michael DÜrrecbab1f42021-11-03 14:17:33 +010091 org.onap.ccsdk.features.sdnr.wt.oauthprovider.filters;version=${project.version},
Michael DÜrre934dbb72021-02-09 08:14:07 +010092 org.onap.ccsdk.features.sdnr.wt.oauthprovider.data;version=${project.version},
93 org.onap.ccsdk.features.sdnr.wt.oauthprovider.services;version=${project.version}
94 </Export-Package>
95 <Import-Package>
96 javax.servlet,
97 javax.servlet.http,
98 javax.net.ssl,
99 javax.crypto,
100 javax.crypto.spec,
101 javax.xml.transform,
102 javax.xml.datatype,
103 javax.management,
104 javax.security.auth,
105 javax.security.auth.login,
106 javax.security.auth.callback,
107 javax.xml.parsers,
108 javax.xml.namespace,
109 javax.xml.transform.stream,
Michael Dürreccea5262024-03-14 11:54:26 +0100110 org.apache.commons.codec.binary,
111 org.apache.shiro,
Michael DÜrre934dbb72021-02-09 08:14:07 +0100112 org.apache.shiro.authc,
113 org.apache.shiro.authz,
114 org.apache.shiro.realm,
115 org.apache.shiro.subject,
Michael Dürreccea5262024-03-14 11:54:26 +0100116 org.apache.shiro.web.filter.authc,
Michael Dürre25423c52022-07-20 09:32:50 +0200117 org.apache.shiro.web.filter.authz,
Michael Dürreccea5262024-03-14 11:54:26 +0100118 org.apache.shiro.web.util,
Michael DÜrre934dbb72021-02-09 08:14:07 +0100119 org.jolokia.osgi.security,
120 org.onap.ccsdk.features.sdnr.wt.common.http,
121 org.opendaylight.aaa.api,
122 org.opendaylight.aaa.api.shiro.principal,
123 org.opendaylight.aaa.shiro.realm,
Michael DÜrref9486b52021-02-17 08:48:52 +0100124 org.opendaylight.mdsal.binding.api,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200125 org.opendaylight.mdsal.common.api,
Michael DÜrref9486b52021-02-17 08:48:52 +0100126 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214,
127 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.authorization,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200128 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.authorization.policies,
Michael DÜrref9486b52021-02-17 08:48:52 +0100129 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.permission,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200130 org.opendaylight.yangtools.concepts,
Michael DÜrref9486b52021-02-17 08:48:52 +0100131 org.opendaylight.yangtools.yang.binding,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200132 org.opendaylight.yangtools.yang.common,
Michael Dürreccea5262024-03-14 11:54:26 +0100133 org.slf4j,
Michael DÜrre934dbb72021-02-09 08:14:07 +0100134 com.fasterxml.jackson.databind,
135 com.fasterxml.jackson.databind.deser.std,
136 com.fasterxml.jackson.databind.ser.std,
137 com.fasterxml.jackson.databind.module,
138 com.fasterxml.jackson.annotation,
139 com.fasterxml.jackson.core.type,
140 com.fasterxml.jackson.core,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200141 com.google.common.base,
Michael Dürre25423c52022-07-20 09:32:50 +0200142 com.google.common.collect,
143 com.google.common.util.concurrent
Michael DÜrre934dbb72021-02-09 08:14:07 +0100144 </Import-Package>
145 <Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
146 <Embed-Dependency>*;scope=compile|runtime;artifactId=!shiro-core;inline=false</Embed-Dependency>
147 <Embed-Transitive>true</Embed-Transitive>
Michael Dürreccea5262024-03-14 11:54:26 +0100148 <Fragment-Host>org.opendaylight.aaa.shiro</Fragment-Host>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100149 </instructions>
150 </configuration>
151 </plugin>
152 </plugins>
153 </build>
154</project>