blob: fb957f00dc227f3f057d780c6f1ed47a2553ee9d [file] [log] [blame]
Guo Ruijing073cc182017-07-31 08:47:35 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP Policy Engine
5 ================================================================================
6 Copyright (C) 2017 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.policy.engine</groupId>
28 <artifactId>PolicyEngineSuite</artifactId>
29 <version>1.1.0-SNAPSHOT</version>
30 </parent>
31
32 <artifactId>ONAP-PDP-REST</artifactId>
33
34 <description>ONAP PDP REST</description>
35 <properties>
36 <springframework.version>4.3.3.RELEASE</springframework.version>
37 </properties>
38 <packaging>war</packaging>
39 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-war-plugin</artifactId>
43 <version>2.1</version>
44 <configuration>
45 <attachClasses>true</attachClasses>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <dependency>
52 <groupId>org.onap.policy.engine</groupId>
53 <artifactId>ONAP-PDP</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>commons-logging</groupId>
58 <artifactId>commons-logging</artifactId>
59 <version>1.1.3</version>
60 <exclusions>
61 <exclusion>
62 <groupId>javax.servlet</groupId>
63 <artifactId>servlet-api</artifactId>
64 </exclusion>
65 </exclusions>
66 </dependency>
67 <dependency>
68 <groupId>log4j</groupId>
69 <artifactId>apache-log4j-extras</artifactId>
70 <version>1.2.17</version>
71 </dependency>
72 <dependency>
73 <groupId>commons-io</groupId>
74 <artifactId>commons-io</artifactId>
75 <version>2.4</version>
76 </dependency>
77 <dependency>
78 <groupId>com.google.guava</groupId>
79 <artifactId>guava</artifactId>
80 <version>19.0</version>
81 </dependency>
82 <dependency>
Tej, Tarun98ab7082017-09-19 23:14:33 -040083 <groupId>org.mariadb.jdbc</groupId>
84 <artifactId>mariadb-java-client</artifactId>
85 <version>2.1.1</version>
86 </dependency>
Guo Ruijing073cc182017-07-31 08:47:35 +000087 <dependency>
88 <groupId>postgresql</groupId>
89 <artifactId>postgresql</artifactId>
90 <version>9.1-901.jdbc4</version>
91 </dependency>
92 <dependency>
93 <groupId>org.springframework</groupId>
94 <artifactId>spring-test</artifactId>
95 <version>${springframework.version}</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.awaitility</groupId>
100 <artifactId>awaitility</artifactId>
101 <version>3.0.0</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.hsqldb</groupId>
106 <artifactId>hsqldb</artifactId>
107 <version>2.3.2</version>
108 </dependency>
109 <dependency>
110 <groupId>com.sun.jersey</groupId>
111 <artifactId>jersey-client</artifactId>
112 <version>1.18</version>
113 </dependency>
114 <dependency>
115 <groupId>com.sun.jersey</groupId>
116 <artifactId>jersey-core</artifactId>
117 <version>1.18</version>
118 </dependency>
119 <dependency>
120 <groupId>junit</groupId>
121 <artifactId>junit</artifactId>
122 <version>4.12</version>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>javax.websocket</groupId>
127 <artifactId>javax.websocket-api</artifactId>
128 <version>1.1</version>
129 <scope>provided</scope>
130 </dependency>
131 <dependency>
132 <groupId>com.att.nsa</groupId>
133 <artifactId>cambriaClient</artifactId>
134 <version>0.0.1</version>
135 <exclusions>
136 <exclusion>
137 <artifactId>slf4j-log4j12</artifactId>
138 <groupId>org.slf4j</groupId>
139 </exclusion>
140 </exclusions>
141 </dependency>
142 <dependency>
143 <groupId>org.mockito</groupId>
144 <artifactId>mockito-core</artifactId>
145 <version>1.9.5</version>
146 </dependency>
147 <dependency>
148 <groupId>org.springframework</groupId>
149 <artifactId>spring-mock</artifactId>
150 <version>2.0.8</version>
151 </dependency>
152 <dependency>
153 <groupId>com.mockrunner</groupId>
154 <artifactId>mockrunner</artifactId>
155 <version>0.3.1</version>
156 </dependency>
157 <dependency>
158 <groupId>org.powermock</groupId>
159 <artifactId>powermock-api-mockito</artifactId>
160 <version>1.5.6</version>
161 </dependency>
162 <dependency>
163 <groupId>org.powermock</groupId>
164 <artifactId>powermock-module-junit4</artifactId>
165 <version>1.5.6</version>
166 </dependency>
167 <dependency>
168 <groupId>org.springframework</groupId>
169 <artifactId>spring-core</artifactId>
170 <version>${springframework.version}</version>
171 </dependency>
172 <dependency>
173 <groupId>org.springframework</groupId>
174 <artifactId>spring-web</artifactId>
175 <version>${springframework.version}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.springframework</groupId>
179 <artifactId>spring-webmvc</artifactId>
180 <version>${springframework.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>io.springfox</groupId>
184 <artifactId>springfox-swagger2</artifactId>
185 <version>2.5.0</version>
186 <exclusions>
187 <exclusion>
188 <groupId>com.fasterxml.jackson.core</groupId>
189 <artifactId>jackson-annotations</artifactId>
190 </exclusion>
191 </exclusions>
192 </dependency>
193 <dependency>
194 <groupId>io.springfox</groupId>
195 <artifactId>springfox-swagger-ui</artifactId>
196 <version>2.5.0</version>
197 </dependency>
198 <dependency>
199 <groupId>org.onap.policy.engine</groupId>
200 <artifactId>PolicyEngineAPI</artifactId>
201 <version>${project.version}</version>
202 <exclusions>
203 <exclusion>
204 <groupId>org.glassfish.tyrus</groupId>
205 <artifactId>tyrus-client</artifactId>
206 </exclusion>
207 <exclusion>
208 <groupId>org.glassfish.tyrus</groupId>
209 <artifactId>tyrus-container-grizzly-client</artifactId>
210 </exclusion>
211 <exclusion>
212 <groupId>javax.persistence</groupId>
213 <artifactId>persistence-api</artifactId>
214 </exclusion>
rb714792a628e2017-09-21 13:51:10 -0400215 <exclusion>
216 <groupId>com.att.aft</groupId>
217 <artifactId>dme2</artifactId>
218 </exclusion>
Guo Ruijing073cc182017-07-31 08:47:35 +0000219 </exclusions>
220 </dependency>
221 </dependencies>
222</project>