blob: 73c4a24feace8232a07ae2c938380cf78600186a [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 Timoney75bde432022-08-04 14:48:26 -040031 <version>2.4.1</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010032 <relativePath/>
33 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-oauth-provider-jar</artifactId>
Dan Timoneyd9e14352022-04-01 09:09:45 -040037 <version>1.4.0-SNAPSHOT</version>
Michael DÜrre934dbb72021-02-09 08:14:07 +010038 <packaging>jar</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>
Michael DÜrre934dbb72021-02-09 08:14:07 +010052 <dependencies>
53 <dependency>
54 <groupId>${project.groupId}</groupId>
55 <artifactId>sdnr-wt-common</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.core</groupId>
60 <artifactId>jackson-databind</artifactId>
61 <scope>provided</scope>
62 </dependency>
Michael DÜrre934dbb72021-02-09 08:14:07 +010063 <dependency>
64 <groupId>com.auth0</groupId>
65 <artifactId>java-jwt</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010066 </dependency>
67 <dependency>
Michael DÜrrec2f7f6d2022-01-31 13:42:48 +010068 <groupId>org.bouncycastle</groupId>
69 <artifactId>bcprov-jdk15on</artifactId>
70 </dependency>
71 <dependency>
Michael DÜrrecbab1f42021-11-03 14:17:33 +010072 <groupId>org.opendaylight.aaa</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010073 <artifactId>aaa-shiro</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010074 <exclusions>
Michael DÜrre934dbb72021-02-09 08:14:07 +010075 <exclusion>
76 <groupId>org.opendaylight.aaa</groupId>
77 <artifactId>aaa-cert</artifactId>
78 </exclusion>
79 <exclusion>
80 <groupId>org.opendaylight.aaa</groupId>
81 <artifactId>aaa-filterchain</artifactId>
82 </exclusion>
83 <exclusion>
84 <groupId>org.opendaylight.aaa</groupId>
85 <artifactId>aaa-password-service-api</artifactId>
86 </exclusion>
87 <exclusion>
88 <groupId>org.opendaylight.aaa.web</groupId>
89 <artifactId>web-api</artifactId>
90 </exclusion>
91 <exclusion>
92 <groupId>org.opendaylight.aaa.web</groupId>
93 <artifactId>servlet-api</artifactId>
94 </exclusion>
95 <exclusion>
96 <groupId>commons-collections</groupId>
97 <artifactId>commons-collections</artifactId>
98 </exclusion>
99 <exclusion>
100 <groupId>commons-text</groupId>
101 <artifactId>commons-text</artifactId>
102 </exclusion>
103 <exclusion>
104 <groupId>com.google.code.gson</groupId>
105 <artifactId>gson</artifactId>
106 </exclusion>
107 <exclusion>
108 <groupId>org.opendaylight.mdsal</groupId>
109 <artifactId>mdsal-binding-api</artifactId>
110 </exclusion>
111 <exclusion>
112 <groupId>com.h2database</groupId>
113 <artifactId>h2</artifactId>
114 </exclusion>
115 <exclusion>
116 <groupId>com.google.guava</groupId>
117 <artifactId>guava</artifactId>
118 </exclusion>
119 <exclusion>
120 <groupId>ehcache-root</groupId>
121 <artifactId>ehcache</artifactId>
122 </exclusion>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100123 </exclusions>
124 </dependency>
125 <dependency>
126 <groupId>org.opendaylight.mdsal</groupId>
Michael DÜrref9486b52021-02-17 08:48:52 +0100127 <artifactId>mdsal-binding-api</artifactId>
128 <scope>provided</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.opendaylight.mdsal</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100132 <artifactId>yang-binding</artifactId>
133 <scope>provided</scope>
134 </dependency>
135 <dependency>
136 <groupId>javax.servlet</groupId>
137 <artifactId>javax.servlet-api</artifactId>
138 <scope>provided</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.mockito</groupId>
142 <artifactId>mockito-core</artifactId>
143 <scope>test</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.eclipse.jetty</groupId>
147 <artifactId>jetty-server</artifactId>
148 <scope>test</scope>
149 </dependency>
150 <dependency>
151 <groupId>org.eclipse.jetty</groupId>
152 <artifactId>jetty-servlet</artifactId>
153 <scope>test</scope>
154 </dependency>
Michael DÜrref9486b52021-02-17 08:48:52 +0100155 <dependency>
156 <groupId>com.fasterxml.jackson.dataformat</groupId>
157 <artifactId>jackson-dataformat-xml</artifactId>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>${project.groupId}</groupId>
Michael DÜrre24cac212021-04-06 10:33:41 +0200162 <artifactId>sdnr-wt-yang-utils</artifactId>
Michael DÜrref9486b52021-02-17 08:48:52 +0100163 <version>${project.version}</version>
164 <scope>test</scope>
165 </dependency>
166 <dependency>
167 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
168 <artifactId>rfc6991-ietf-yang-types</artifactId>
169 <scope>test</scope>
170 </dependency>
171 <dependency>
172 <groupId>org.opendaylight.netconf</groupId>
173 <artifactId>sal-netconf-connector</artifactId>
174 <scope>test</scope>
175 </dependency>
176 <dependency>
177 <groupId>org.osgi</groupId>
178 <artifactId>org.osgi.core</artifactId>
179 <scope>test</scope>
180 </dependency>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100181 </dependencies>
182</project>