blob: 77b80ba55914284407aabbf021a7317bc7eb844f [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>
Michael DÜrrecbab1f42021-11-03 14:17:33 +010031 <version>2.3.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 Timoney2cdb55c2021-09-21 13:13:39 -040037 <version>1.3.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Ürrecbab1f42021-11-03 14:17:33 +010068 <groupId>org.opendaylight.aaa</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010069 <artifactId>aaa-shiro</artifactId>
Michael DÜrre934dbb72021-02-09 08:14:07 +010070 <exclusions>
71<!-- <exclusion> -->
72<!-- <groupId>org.opendaylight.aaa</groupId> -->
73<!-- <artifactId>aaa-shiro-api</artifactId> -->
74<!-- </exclusion> -->
75 <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>
123<!-- <exclusion> -->
124<!-- <groupId>org.jolokia</groupId> -->
125<!-- <artifactId>jolokia-osgi</artifactId> -->
126<!-- </exclusion> -->
127 </exclusions>
128 </dependency>
129 <dependency>
130 <groupId>org.opendaylight.mdsal</groupId>
Michael DÜrref9486b52021-02-17 08:48:52 +0100131 <artifactId>mdsal-binding-api</artifactId>
132 <scope>provided</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.opendaylight.mdsal</groupId>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100136 <artifactId>yang-binding</artifactId>
137 <scope>provided</scope>
138 </dependency>
139 <dependency>
140 <groupId>javax.servlet</groupId>
141 <artifactId>javax.servlet-api</artifactId>
142 <scope>provided</scope>
143 </dependency>
144 <dependency>
145 <groupId>org.mockito</groupId>
146 <artifactId>mockito-core</artifactId>
147 <scope>test</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.eclipse.jetty</groupId>
151 <artifactId>jetty-server</artifactId>
152 <scope>test</scope>
153 </dependency>
154 <dependency>
155 <groupId>org.eclipse.jetty</groupId>
156 <artifactId>jetty-servlet</artifactId>
157 <scope>test</scope>
158 </dependency>
Michael DÜrref9486b52021-02-17 08:48:52 +0100159 <dependency>
160 <groupId>com.fasterxml.jackson.dataformat</groupId>
161 <artifactId>jackson-dataformat-xml</artifactId>
162 <scope>test</scope>
163 </dependency>
164 <dependency>
165 <groupId>${project.groupId}</groupId>
Michael DÜrre24cac212021-04-06 10:33:41 +0200166 <artifactId>sdnr-wt-yang-utils</artifactId>
Michael DÜrref9486b52021-02-17 08:48:52 +0100167 <version>${project.version}</version>
168 <scope>test</scope>
169 </dependency>
170 <dependency>
171 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
172 <artifactId>rfc6991-ietf-yang-types</artifactId>
173 <scope>test</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.opendaylight.netconf</groupId>
177 <artifactId>sal-netconf-connector</artifactId>
178 <scope>test</scope>
179 </dependency>
180 <dependency>
181 <groupId>org.osgi</groupId>
182 <artifactId>org.osgi.core</artifactId>
183 <scope>test</scope>
184 </dependency>
Michael DÜrre934dbb72021-02-09 08:14:07 +0100185 </dependencies>
186</project>