blob: 21bba122512d47f36c9ab6a92e8cf90430fe3016 [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 -->
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -040025
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>
Timoney, Dan (dt5972)18a3e302022-10-28 10:12:30 -040032 <version>2.5.0</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010033 <relativePath/>
34 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-oauth-provider-jar</artifactId>
Timoney, Dan (dt5972)18a3e302022-10-28 10:12:30 -040038 <version>1.5.0-SNAPSHOT</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010039 <packaging>jar</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>
Michael DÜrre934dbb72021-02-09 08:14:07 +010053 <dependencies>
54 <dependency>
55 <groupId>${project.groupId}</groupId>
56 <artifactId>sdnr-wt-common</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 <scope>provided</scope>
63 </dependency>
Michael DÜrre934dbb72021-02-09 08:14:07 +010064 <dependency>
65 <groupId>com.auth0</groupId>
66 <artifactId>java-jwt</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010067 </dependency>
68 <dependency>
Michael DÜrrec2f7f6d2022-01-31 13:42:48 +010069 <groupId>org.bouncycastle</groupId>
70 <artifactId>bcprov-jdk15on</artifactId>
71 </dependency>
72 <dependency>
Michael DÜrrecbab1f42021-11-03 14:17:33 +010073 <groupId>org.opendaylight.aaa</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010074 <artifactId>aaa-shiro</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010075 <exclusions>
Michael DÜrre934dbb72021-02-09 08:14:07 +010076 <exclusion>
77 <groupId>org.opendaylight.aaa</groupId>
78 <artifactId>aaa-cert</artifactId>
79 </exclusion>
80 <exclusion>
81 <groupId>org.opendaylight.aaa</groupId>
82 <artifactId>aaa-filterchain</artifactId>
83 </exclusion>
84 <exclusion>
85 <groupId>org.opendaylight.aaa</groupId>
86 <artifactId>aaa-password-service-api</artifactId>
87 </exclusion>
88 <exclusion>
89 <groupId>org.opendaylight.aaa.web</groupId>
90 <artifactId>web-api</artifactId>
91 </exclusion>
92 <exclusion>
93 <groupId>org.opendaylight.aaa.web</groupId>
94 <artifactId>servlet-api</artifactId>
95 </exclusion>
96 <exclusion>
97 <groupId>commons-collections</groupId>
98 <artifactId>commons-collections</artifactId>
99 </exclusion>
100 <exclusion>
101 <groupId>commons-text</groupId>
102 <artifactId>commons-text</artifactId>
103 </exclusion>
104 <exclusion>
105 <groupId>com.google.code.gson</groupId>
106 <artifactId>gson</artifactId>
107 </exclusion>
108 <exclusion>
109 <groupId>org.opendaylight.mdsal</groupId>
110 <artifactId>mdsal-binding-api</artifactId>
111 </exclusion>
112 <exclusion>
113 <groupId>com.h2database</groupId>
114 <artifactId>h2</artifactId>
115 </exclusion>
116 <exclusion>
117 <groupId>com.google.guava</groupId>
118 <artifactId>guava</artifactId>
119 </exclusion>
120 <exclusion>
121 <groupId>ehcache-root</groupId>
122 <artifactId>ehcache</artifactId>
123 </exclusion>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100124 </exclusions>
125 </dependency>
126 <dependency>
127 <groupId>org.opendaylight.mdsal</groupId>
Michael DÜrref9486b52021-02-17 08:48:52 +0100128 <artifactId>mdsal-binding-api</artifactId>
129 <scope>provided</scope>
130 </dependency>
131 <dependency>
132 <groupId>org.opendaylight.mdsal</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100133 <artifactId>yang-binding</artifactId>
134 <scope>provided</scope>
135 </dependency>
136 <dependency>
137 <groupId>javax.servlet</groupId>
138 <artifactId>javax.servlet-api</artifactId>
139 <scope>provided</scope>
140 </dependency>
141 <dependency>
142 <groupId>org.mockito</groupId>
143 <artifactId>mockito-core</artifactId>
144 <scope>test</scope>
145 </dependency>
146 <dependency>
147 <groupId>org.eclipse.jetty</groupId>
148 <artifactId>jetty-server</artifactId>
149 <scope>test</scope>
150 </dependency>
151 <dependency>
152 <groupId>org.eclipse.jetty</groupId>
153 <artifactId>jetty-servlet</artifactId>
154 <scope>test</scope>
155 </dependency>
Michael DÜrref9486b52021-02-17 08:48:52 +0100156 <dependency>
157 <groupId>com.fasterxml.jackson.dataformat</groupId>
158 <artifactId>jackson-dataformat-xml</artifactId>
159 <scope>test</scope>
160 </dependency>
161 <dependency>
162 <groupId>${project.groupId}</groupId>
Michael DÜrre24cac212021-04-06 10:33:41 +0200163 <artifactId>sdnr-wt-yang-utils</artifactId>
Michael DÜrref9486b52021-02-17 08:48:52 +0100164 <version>${project.version}</version>
165 <scope>test</scope>
166 </dependency>
167 <dependency>
168 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
169 <artifactId>rfc6991-ietf-yang-types</artifactId>
170 <scope>test</scope>
171 </dependency>
172 <dependency>
173 <groupId>org.opendaylight.netconf</groupId>
174 <artifactId>sal-netconf-connector</artifactId>
175 <scope>test</scope>
176 </dependency>
177 <dependency>
178 <groupId>org.osgi</groupId>
179 <artifactId>org.osgi.core</artifactId>
180 <scope>test</scope>
181 </dependency>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100182 </dependencies>
183</project>