blob: 0a3738d1d819ded039b7c9f03b1bbd12b447385f [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Ürre934dbb72021-02-09 08:14:07 +010025<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">
26 <modelVersion>4.0.0</modelVersion>
27
28 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Dan Timoneye2583ef2024-10-01 12:37:44 -040031 <version>3.0.0</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010032 <relativePath/>
33 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Michael Dürreccea5262024-03-14 11:54:26 +010036 <artifactId>sdnr-wt-oauth-realm</artifactId>
Dan Timoneye2583ef2024-10-01 12:37:44 -040037 <version>2.0.0-SNAPSHOT</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010038 <packaging>bundle</packaging>
39
40 <name>ccsdk-features :: ${project.artifactId}</name>
41 <licenses>
42 <license>
43 <name>Apache License, Version 2.0</name>
44 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
45 </license>
46 </licenses>
47
48 <properties>
49 <maven.javadoc.skip>true</maven.javadoc.skip>
50 <checkstyle.skip>true</checkstyle.skip>
51 </properties>
52
53 <dependencies>
54 <dependency>
55 <groupId>${project.groupId}</groupId>
Michael Dürreccea5262024-03-14 11:54:26 +010056 <artifactId>sdnr-wt-oauth-core</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010057 <version>${project.version}</version>
58 <exclusions>
59 <exclusion>
60 <groupId>org.opendaylight.aaa</groupId>
61 <artifactId>aaa-shiro</artifactId>
62 </exclusion>
63 <exclusion>
Michael DÜrrecbab1f42021-11-03 14:17:33 +010064 <groupId>org.opendaylight.aaa</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010065 <artifactId>aaa-shiro</artifactId>
66 </exclusion>
67 <exclusion>
68 <groupId>org.apache.shiro</groupId>
69 <artifactId>shiro-web</artifactId>
70 </exclusion>
71 <exclusion>
72 <groupId>${project.groupId}</groupId>
73 <artifactId>sdnr-wt-common</artifactId>
74 </exclusion>
75 </exclusions>
76 </dependency>
77 </dependencies>
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
83 <extensions>true</extensions>
84 <configuration>
85 <instructions>
86 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
87 <Bundle-Version>${project.version}</Bundle-Version>
88 <Export-Package>
89 org.onap.ccsdk.features.sdnr.wt.oauthprovider;version=${project.version},
Michael DÜrrecbab1f42021-11-03 14:17:33 +010090 org.onap.ccsdk.features.sdnr.wt.oauthprovider.filters;version=${project.version},
Michael DÜrre934dbb72021-02-09 08:14:07 +010091 org.onap.ccsdk.features.sdnr.wt.oauthprovider.data;version=${project.version},
92 org.onap.ccsdk.features.sdnr.wt.oauthprovider.services;version=${project.version}
93 </Export-Package>
94 <Import-Package>
95 javax.servlet,
96 javax.servlet.http,
97 javax.net.ssl,
98 javax.crypto,
99 javax.crypto.spec,
100 javax.xml.transform,
101 javax.xml.datatype,
102 javax.management,
103 javax.security.auth,
104 javax.security.auth.login,
105 javax.security.auth.callback,
106 javax.xml.parsers,
107 javax.xml.namespace,
108 javax.xml.transform.stream,
Michael Dürreccea5262024-03-14 11:54:26 +0100109 org.apache.commons.codec.binary,
110 org.apache.shiro,
Michael DÜrre934dbb72021-02-09 08:14:07 +0100111 org.apache.shiro.authc,
112 org.apache.shiro.authz,
113 org.apache.shiro.realm,
114 org.apache.shiro.subject,
Michael Dürreccea5262024-03-14 11:54:26 +0100115 org.apache.shiro.web.filter.authc,
Michael Dürre25423c52022-07-20 09:32:50 +0200116 org.apache.shiro.web.filter.authz,
Michael Dürreccea5262024-03-14 11:54:26 +0100117 org.apache.shiro.web.util,
Michael DÜrre934dbb72021-02-09 08:14:07 +0100118 org.jolokia.osgi.security,
119 org.onap.ccsdk.features.sdnr.wt.common.http,
120 org.opendaylight.aaa.api,
121 org.opendaylight.aaa.api.shiro.principal,
122 org.opendaylight.aaa.shiro.realm,
Michael DÜrref9486b52021-02-17 08:48:52 +0100123 org.opendaylight.mdsal.binding.api,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200124 org.opendaylight.mdsal.common.api,
Michael DÜrref9486b52021-02-17 08:48:52 +0100125 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214,
126 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.authorization,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200127 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.authorization.policies,
Michael DÜrref9486b52021-02-17 08:48:52 +0100128 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.permission,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200129 org.opendaylight.yangtools.concepts,
Michael DÜrref9486b52021-02-17 08:48:52 +0100130 org.opendaylight.yangtools.yang.binding,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200131 org.opendaylight.yangtools.yang.common,
Michael Dürreccea5262024-03-14 11:54:26 +0100132 org.slf4j,
Michael DÜrre934dbb72021-02-09 08:14:07 +0100133 com.fasterxml.jackson.databind,
134 com.fasterxml.jackson.databind.deser.std,
135 com.fasterxml.jackson.databind.ser.std,
136 com.fasterxml.jackson.databind.module,
137 com.fasterxml.jackson.annotation,
138 com.fasterxml.jackson.core.type,
139 com.fasterxml.jackson.core,
Michael Dürre34f89fa2022-08-31 08:46:55 +0200140 com.google.common.base,
Michael Dürre25423c52022-07-20 09:32:50 +0200141 com.google.common.collect,
142 com.google.common.util.concurrent
Michael DÜrre934dbb72021-02-09 08:14:07 +0100143 </Import-Package>
144 <Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>
145 <Embed-Dependency>*;scope=compile|runtime;artifactId=!shiro-core;inline=false</Embed-Dependency>
146 <Embed-Transitive>true</Embed-Transitive>
Michael Dürreccea5262024-03-14 11:54:26 +0100147 <Fragment-Host>org.opendaylight.aaa.shiro</Fragment-Host>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100148 </instructions>
149 </configuration>
150 </plugin>
151 </plugins>
152 </build>
153</project>