Merge "Fix Policy GUI Template Issue"
[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.0-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             <version>2.1.1</version>
83         </dependency>
84         <dependency>
85             <groupId>postgresql</groupId>
86             <artifactId>postgresql</artifactId>
87             <version>9.1-901.jdbc4</version>
88         </dependency>
89         <dependency>
90             <groupId>org.springframework</groupId>
91             <artifactId>spring-test</artifactId>
92             <version>${springframework.version}</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.awaitility</groupId>
97             <artifactId>awaitility</artifactId>
98             <version>3.0.0</version>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.hsqldb</groupId>
103             <artifactId>hsqldb</artifactId>
104             <version>2.3.2</version>
105         </dependency>
106         <dependency>
107             <groupId>com.sun.jersey</groupId>
108             <artifactId>jersey-client</artifactId>
109             <version>1.18</version>
110         </dependency>
111         <dependency>
112             <groupId>com.sun.jersey</groupId>
113             <artifactId>jersey-core</artifactId>
114             <version>1.18</version>
115         </dependency>
116         <dependency>
117             <groupId>javax.websocket</groupId>
118             <artifactId>javax.websocket-api</artifactId>
119             <version>1.1</version>
120             <scope>provided</scope>
121         </dependency>
122         <dependency>
123             <groupId>com.att.nsa</groupId>
124             <artifactId>cambriaClient</artifactId>
125             <exclusions>
126                 <exclusion>
127                     <artifactId>slf4j-log4j12</artifactId>
128                     <groupId>org.slf4j</groupId>
129                 </exclusion>
130             </exclusions>
131         </dependency>
132         <dependency>
133             <groupId>com.att.aft</groupId>
134             <artifactId>dme2</artifactId>
135             <version>3.1.200-oss</version>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.springframework</groupId>
140             <artifactId>spring-core</artifactId>
141             <version>${springframework.version}</version>
142         </dependency>
143         <dependency>
144             <groupId>org.springframework</groupId>
145             <artifactId>spring-web</artifactId>
146             <version>${springframework.version}</version>
147         </dependency>
148         <dependency>
149             <groupId>org.springframework</groupId>
150             <artifactId>spring-webmvc</artifactId>
151             <version>${springframework.version}</version>
152         </dependency>
153         <dependency>
154             <groupId>io.springfox</groupId>
155             <artifactId>springfox-swagger2</artifactId>
156             <version>2.5.0</version>
157             <exclusions>
158                 <exclusion>
159                     <groupId>com.fasterxml.jackson.core</groupId>
160                     <artifactId>jackson-annotations</artifactId>
161                 </exclusion>
162             </exclusions>
163         </dependency>
164         <dependency>
165             <groupId>io.springfox</groupId>
166             <artifactId>springfox-swagger-ui</artifactId>
167             <version>2.7.0</version>
168         </dependency>
169         <dependency>
170             <groupId>org.apache.commons</groupId>
171             <artifactId>commons-text</artifactId>
172             <version>1.4</version>
173         </dependency>
174         <dependency>
175             <groupId>org.onap.policy.engine</groupId>
176             <artifactId>PolicyEngineAPI</artifactId>
177             <version>${project.version}</version>
178             <exclusions>
179                 <exclusion>
180                     <groupId>org.glassfish.tyrus</groupId>
181                     <artifactId>tyrus-client</artifactId>
182                 </exclusion>
183                 <exclusion>
184                     <groupId>org.glassfish.tyrus</groupId>
185                     <artifactId>tyrus-container-grizzly-client</artifactId>
186                 </exclusion>
187                 <exclusion>
188                     <groupId>javax.persistence</groupId>
189                     <artifactId>persistence-api</artifactId>
190                 </exclusion>
191                 <exclusion>
192                     <groupId>com.att.aft</groupId>
193                     <artifactId>dme2</artifactId>
194                 </exclusion>
195             </exclusions>
196         </dependency>
197     </dependencies>
198 </project>