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 | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 25 | <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 Timoney | e2583ef | 2024-10-01 12:37:44 -0400 | [diff] [blame^] | 31 | <version>3.0.0</version> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 32 | <relativePath/> |
| 33 | </parent> |
| 34 | |
| 35 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 36 | <artifactId>sdnr-wt-oauth-realm</artifactId> |
Dan Timoney | e2583ef | 2024-10-01 12:37:44 -0400 | [diff] [blame^] | 37 | <version>2.0.0-SNAPSHOT</version> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 38 | <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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 56 | <artifactId>sdnr-wt-oauth-core</artifactId> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 57 | <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Ürre | cbab1f4 | 2021-11-03 14:17:33 +0100 | [diff] [blame] | 64 | <groupId>org.opendaylight.aaa</groupId> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 65 | <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Ürre | cbab1f4 | 2021-11-03 14:17:33 +0100 | [diff] [blame] | 90 | org.onap.ccsdk.features.sdnr.wt.oauthprovider.filters;version=${project.version}, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 91 | 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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 109 | org.apache.commons.codec.binary, |
| 110 | org.apache.shiro, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 111 | org.apache.shiro.authc, |
| 112 | org.apache.shiro.authz, |
| 113 | org.apache.shiro.realm, |
| 114 | org.apache.shiro.subject, |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 115 | org.apache.shiro.web.filter.authc, |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 116 | org.apache.shiro.web.filter.authz, |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 117 | org.apache.shiro.web.util, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 118 | 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Ürre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 123 | org.opendaylight.mdsal.binding.api, |
Michael Dürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 124 | org.opendaylight.mdsal.common.api, |
Michael DÜrre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 125 | 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ürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 127 | 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] | 128 | 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] | 129 | org.opendaylight.yangtools.concepts, |
Michael DÜrre | f9486b5 | 2021-02-17 08:48:52 +0100 | [diff] [blame] | 130 | org.opendaylight.yangtools.yang.binding, |
Michael Dürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 131 | org.opendaylight.yangtools.yang.common, |
Michael Dürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 132 | org.slf4j, |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 133 | 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ürre | 34f89fa | 2022-08-31 08:46:55 +0200 | [diff] [blame] | 140 | com.google.common.base, |
Michael Dürre | 25423c5 | 2022-07-20 09:32:50 +0200 | [diff] [blame] | 141 | com.google.common.collect, |
| 142 | com.google.common.util.concurrent |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 143 | </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ürre | ccea526 | 2024-03-14 11:54:26 +0100 | [diff] [blame] | 147 | <Fragment-Host>org.opendaylight.aaa.shiro</Fragment-Host> |
Michael DÜrre | 934dbb7 | 2021-02-09 08:14:07 +0100 | [diff] [blame] | 148 | </instructions> |
| 149 | </configuration> |
| 150 | </plugin> |
| 151 | </plugins> |
| 152 | </build> |
| 153 | </project> |