6dd647281dbaa9b0e3a5dd0bb4836744ab9f8ecf
[ccsdk/features.git] / sdnr / wt / oauth-provider / provider-jar / pom.xml
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   -->
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>
31         <version>2.3.3</version>
32         <relativePath/>
33     </parent>
34
35     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36     <artifactId>sdnr-wt-oauth-provider-jar</artifactId>
37     <version>1.3.1-SNAPSHOT</version>
38     <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>
52     <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>
63         <dependency>
64             <groupId>com.auth0</groupId>
65             <artifactId>java-jwt</artifactId>
66         </dependency>
67         <dependency>
68            <groupId>org.bouncycastle</groupId>
69            <artifactId>bcprov-jdk15on</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.aaa</groupId>
73             <artifactId>aaa-shiro</artifactId>
74             <exclusions>
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             </exclusions>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.mdsal</groupId>
127             <artifactId>mdsal-binding-api</artifactId>
128             <scope>provided</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.mdsal</groupId>
132             <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>
155         <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>
162             <artifactId>sdnr-wt-yang-utils</artifactId>
163             <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>
181     </dependencies>
182 </project>