Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 1 | <?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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 25 | |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 26 | <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 Timoney | 308bbcd | 2024-09-23 11:30:35 -0400 | [diff] [blame] | 32 | <version>2.8.0</version> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 33 | <relativePath/> |
| 34 | </parent> |
| 35 | |
| 36 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 37 | <artifactId>sdnr-wt-oauth-realm</artifactId> |
Dan Timoney | 10bcf61 | 2024-09-23 15:48:50 -0400 | [diff] [blame^] | 38 | <version>1.8.1-SNAPSHOT</version> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 39 | <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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 57 | <artifactId>sdnr-wt-oauth-core</artifactId> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 58 | <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Ürre | cbab1f4 | 2021-11-03 14:17:33 +0100 | [diff] [blame] | 65 | <groupId>org.opendaylight.aaa</groupId> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 66 | <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Ürre | cbab1f4 | 2021-11-03 14:17:33 +0100 | [diff] [blame] | 91 | org.onap.ccsdk.features.sdnr.wt.oauthprovider.filters;version=${project.version}, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 92 | 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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 110 | org.apache.commons.codec.binary, |
| 111 | org.apache.shiro, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 112 | org.apache.shiro.authc, |
| 113 | org.apache.shiro.authz, |
| 114 | org.apache.shiro.realm, |
| 115 | org.apache.shiro.subject, |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 116 | org.apache.shiro.web.filter.authc, |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 117 | org.apache.shiro.web.filter.authz, |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 118 | org.apache.shiro.web.util, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 119 | 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Ürre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 124 | org.opendaylight.mdsal.binding.api, |
Michael Dürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 125 | org.opendaylight.mdsal.common.api, |
Michael DÜrre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 126 | 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ürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 128 | org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.authorization.policies, |
Michael DÜrre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 129 | org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.aaa.rev161214.http.permission, |
Michael Dürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 130 | org.opendaylight.yangtools.concepts, |
Michael DÜrre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 131 | org.opendaylight.yangtools.yang.binding, |
Michael Dürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 132 | org.opendaylight.yangtools.yang.common, |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 133 | org.slf4j, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 134 | 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ürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 141 | com.google.common.base, |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 142 | com.google.common.collect, |
| 143 | com.google.common.util.concurrent |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 144 | </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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 148 | <Fragment-Host>org.opendaylight.aaa.shiro</Fragment-Host> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 149 | </instructions> |
| 150 | </configuration> |
| 151 | </plugin> |
| 152 | </plugins> |
| 153 | </build> |
| 154 | </project> |