2b69249fa2760d651848f2c2cb7af5bf8ff72d2a
[policy/engine.git] / ONAP-PDP-REST / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.policy.engine</groupId>
27         <artifactId>PolicyEngineSuite</artifactId>
28         <version>1.3.1-SNAPSHOT</version>
29     </parent>
30     <artifactId>ONAP-PDP-REST</artifactId>
31     <description>ONAP PDP REST</description>
32     <packaging>war</packaging>
33     <build>
34         <plugins>
35             <plugin>
36                 <artifactId>maven-war-plugin</artifactId>
37                 <configuration>
38                     <attachClasses>true</attachClasses>
39                 </configuration>
40             </plugin>
41         </plugins>
42     </build>
43     <dependencies>
44         <dependency>
45             <groupId>com.h2database</groupId>
46             <artifactId>h2</artifactId>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.onap.policy.engine</groupId>
51             <artifactId>ONAP-PDP</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>commons-logging</groupId>
56             <artifactId>commons-logging</artifactId>
57             <version>1.1.3</version>
58             <exclusions>
59                 <exclusion>
60                     <groupId>javax.servlet</groupId>
61                     <artifactId>servlet-api</artifactId>
62                 </exclusion>
63             </exclusions>
64         </dependency>
65         <dependency>
66             <groupId>log4j</groupId>
67             <artifactId>apache-log4j-extras</artifactId>
68             <version>1.2.17</version>
69         </dependency>
70         <dependency>
71             <groupId>commons-io</groupId>
72             <artifactId>commons-io</artifactId>
73             <version>2.4</version>
74         </dependency>
75         <dependency>
76             <groupId>com.google.guava</groupId>
77             <artifactId>guava</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.mariadb.jdbc</groupId>
81             <artifactId>mariadb-java-client</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.springframework</groupId>
85             <artifactId>spring-test</artifactId>
86             <version>${springframework.version}</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.awaitility</groupId>
91             <artifactId>awaitility</artifactId>
92             <version>3.0.0</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.hsqldb</groupId>
97             <artifactId>hsqldb</artifactId>
98             <version>2.3.2</version>
99         </dependency>
100         <dependency>
101             <groupId>com.sun.jersey</groupId>
102             <artifactId>jersey-client</artifactId>
103             <version>1.18</version>
104         </dependency>
105         <dependency>
106             <groupId>com.sun.jersey</groupId>
107             <artifactId>jersey-core</artifactId>
108             <version>1.18</version>
109         </dependency>
110         <dependency>
111             <groupId>javax.websocket</groupId>
112             <artifactId>javax.websocket-api</artifactId>
113             <version>1.1</version>
114             <scope>provided</scope>
115         </dependency>
116         <dependency>
117             <groupId>com.att.nsa</groupId>
118             <artifactId>cambriaClient</artifactId>
119             <exclusions>
120                 <exclusion>
121                     <artifactId>slf4j-log4j12</artifactId>
122                     <groupId>org.slf4j</groupId>
123                 </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>com.att.aft</groupId>
128             <artifactId>dme2</artifactId>
129             <version>3.1.200-oss</version>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.springframework</groupId>
134             <artifactId>spring-core</artifactId>
135             <version>${springframework.version}</version>
136         </dependency>
137         <dependency>
138             <groupId>org.springframework</groupId>
139             <artifactId>spring-web</artifactId>
140             <version>${springframework.version}</version>
141         </dependency>
142         <dependency>
143             <groupId>org.springframework</groupId>
144             <artifactId>spring-webmvc</artifactId>
145             <version>${springframework.version}</version>
146         </dependency>
147         <dependency>
148             <groupId>io.springfox</groupId>
149             <artifactId>springfox-swagger2</artifactId>
150             <version>2.5.0</version>
151             <exclusions>
152                 <exclusion>
153                     <groupId>com.fasterxml.jackson.core</groupId>
154                     <artifactId>jackson-annotations</artifactId>
155                 </exclusion>
156             </exclusions>
157         </dependency>
158         <dependency>
159             <groupId>io.springfox</groupId>
160             <artifactId>springfox-swagger-ui</artifactId>
161             <version>2.7.0</version>
162         </dependency>
163         <dependency>
164             <groupId>org.apache.commons</groupId>
165             <artifactId>commons-text</artifactId>
166             <version>1.4</version>
167         </dependency>
168         <dependency>
169             <groupId>org.onap.policy.engine</groupId>
170             <artifactId>PolicyEngineAPI</artifactId>
171             <version>${project.version}</version>
172             <exclusions>
173                 <exclusion>
174                     <groupId>org.glassfish.tyrus</groupId>
175                     <artifactId>tyrus-client</artifactId>
176                 </exclusion>
177                 <exclusion>
178                     <groupId>org.glassfish.tyrus</groupId>
179                     <artifactId>tyrus-container-grizzly-client</artifactId>
180                 </exclusion>
181                 <exclusion>
182                     <groupId>javax.persistence</groupId>
183                     <artifactId>persistence-api</artifactId>
184                 </exclusion>
185                 <exclusion>
186                     <groupId>com.att.aft</groupId>
187                     <artifactId>dme2</artifactId>
188                 </exclusion>
189             </exclusions>
190         </dependency>
191     </dependencies>
192 </project>