blob: f05729ebba2c004932d6a2e13b96de3fc7faae30 [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ECOMP 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
Pamela Dragosh91d04c62017-02-14 19:41:00 -050022<project xmlns="http://maven.apache.org/POM/4.0.0" 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
25 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050026 <artifactId>ECOMP-PAP-REST</artifactId>
27 <description>ECOMP-PAP-REST</description>
28 <packaging>war</packaging>
29 <parent>
30 <groupId>org.openecomp.policy.engine</groupId>
31 <artifactId>PolicyEngineSuite</artifactId>
Pamela Dragosh3234eb02017-03-10 14:54:53 -050032 <version>1.1.0-SNAPSHOT</version>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050033 </parent>
34 <build>
35 <plugins>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040036 <plugin>
37 <artifactId>maven-war-plugin</artifactId>
38 <version>2.1</version>
39 <configuration>
40 <attachClasses>true</attachClasses>
41 <webResources>
42 <webResource>
43 <directory>src/main/java/</directory>
44 <targetPath>WEB-INF/classes/</targetPath>
45 <includes>
46 <include>hibernate.cfg.xml</include>
47 </includes>
48 </webResource>
49 </webResources>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-compiler-plugin</artifactId>
55 <version>3.2</version>
56 <configuration>
57 <source>1.8</source>
58 <target>1.8</target>
59 </configuration>
60 </plugin>
61 </plugins>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050062 </build>
63 <dependencies>
64 <dependency>
65 <!-- To support integrity-audit audit of BackupMonitorEntity table -->
66 <groupId>org.openecomp.policy.engine</groupId>
67 <artifactId>PolicyEngineUtils</artifactId>
68 <version>${project.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040069 <exclusions>
70 <exclusion>
71 <groupId>com.att.aft</groupId>
72 <artifactId>dme2</artifactId>
73 </exclusion>
74 <exclusion>
75 <groupId>org.json</groupId>
76 <artifactId>json</artifactId>
77 </exclusion>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -040078 <exclusion>
79 <groupId>com.att.nsa</groupId>
80 <artifactId>dmaapClient</artifactId>
81 </exclusion>
82 <exclusion>
83 <groupId>com.att.nsa</groupId>
84 <artifactId>cambriaClient</artifactId>
85 </exclusion>
86 <exclusion>
87 <groupId>com.att.cadi</groupId>
88 <artifactId>cadi-aaf</artifactId>
89 </exclusion>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040090 </exclusions>
91 </dependency>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050092 <dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040093 <groupId>org.apache.commons</groupId>
94 <artifactId>commons-lang3</artifactId>
95 <version>3.4</version>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050096 </dependency>
97 <dependency>
98 <groupId>org.openecomp.policy.engine</groupId>
99 <artifactId>ECOMP-PDP</artifactId>
100 <version>${project.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400101 <exclusions>
102 <exclusion>
103 <groupId>org.json</groupId>
104 <artifactId>json</artifactId>
105 </exclusion>
106 </exclusions>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500107 </dependency>
108 <dependency>
109 <groupId>org.openecomp.policy.common</groupId>
110 <artifactId>ECOMP-Logging</artifactId>
111 <version>${common-modules.version}</version>
112 </dependency>
113 <dependency>
114 <groupId>javax.servlet</groupId>
115 <artifactId>javax.servlet-api</artifactId>
116 <version>3.1.0</version>
117 </dependency>
118 <dependency>
119 <groupId>commons-logging</groupId>
120 <artifactId>commons-logging</artifactId>
121 <version>1.1.3</version>
122 <exclusions>
123 <exclusion>
124 <groupId>javax.servlet</groupId>
125 <artifactId>servlet-api</artifactId>
126 </exclusion>
127 </exclusions>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.commons</groupId>
131 <artifactId>commons-compress</artifactId>
132 <version>1.8</version>
133 </dependency>
134 <dependency>
135 <groupId>commons-fileupload</groupId>
136 <artifactId>commons-fileupload</artifactId>
137 <version>1.3.1</version>
138 </dependency>
139 <dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400140 <groupId>org.apache.logging.log4j</groupId>
141 <artifactId>log4j-core</artifactId>
142 <version>2.8.2</version>
143 </dependency>
144 <dependency>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500145 <groupId>log4j</groupId>
146 <artifactId>apache-log4j-extras</artifactId>
147 <version>1.2.17</version>
148 </dependency>
149 <dependency>
150 <groupId>commons-io</groupId>
151 <artifactId>commons-io</artifactId>
152 <version>2.4</version>
153 </dependency>
154 <dependency>
155 <groupId>io.netty</groupId>
156 <artifactId>netty</artifactId>
157 <version>3.5.0.Final</version>
158 </dependency>
159 <dependency>
160 <groupId>com.google.guava</groupId>
161 <artifactId>guava</artifactId>
162 <version>14.0.1</version>
163 </dependency>
164 <dependency>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500165 <groupId>org.eclipse.jgit</groupId>
166 <artifactId>org.eclipse.jgit</artifactId>
167 <version>3.2.0.201312181205-r</version>
168 </dependency>
169 <dependency>
170 <groupId>junit</groupId>
171 <artifactId>junit</artifactId>
172 <version>4.11</version>
173 <scope>test</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.tomcat</groupId>
177 <artifactId>tomcat-jdbc</artifactId>
178 <version>8.0.24</version>
179 </dependency>
180 <dependency>
181 <groupId>com.h2database</groupId>
182 <artifactId>h2</artifactId>
183 <version>[1.4.186,)</version>
184 </dependency>
185 <dependency>
186 <groupId>com.github.fge</groupId>
187 <artifactId>json-patch</artifactId>
188 <version>1.9</version>
189 </dependency>
190 <dependency>
191 <groupId>org.eclipse.persistence</groupId>
192 <artifactId>javax.persistence</artifactId>
193 <version>2.1.0</version>
194 </dependency>
195 <dependency>
196 <groupId>org.eclipse.persistence</groupId>
197 <artifactId>eclipselink</artifactId>
198 <version>2.6.0</version>
199 </dependency>
200
201 <dependency>
202 <groupId>mysql</groupId>
203 <artifactId>mysql-connector-java</artifactId>
204 <version>5.1.30</version>
205 </dependency>
206 <dependency>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500207 <groupId>org.springframework</groupId>
208 <artifactId>spring-mock</artifactId>
209 <version>2.0.8</version>
210 </dependency>
211 <dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400212 <groupId>org.openecomp.policy.engine</groupId>
213 <artifactId>ControlloopPolicy</artifactId>
214 <version>${project.version}</version>
215 </dependency>
216 <dependency>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500217 <groupId>com.mockrunner</groupId>
218 <artifactId>mockrunner</artifactId>
219 <version>0.3.1</version>
220 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400221 <!-- Spring -->
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500222 <dependency>
223 <groupId>org.springframework</groupId>
224 <artifactId>spring-core</artifactId>
225 <version>${springframework.version}</version>
226 </dependency>
227 <dependency>
228 <groupId>org.springframework</groupId>
229 <artifactId>spring-web</artifactId>
230 <version>${springframework.version}</version>
231 </dependency>
232 <dependency>
233 <groupId>org.springframework</groupId>
234 <artifactId>spring-webmvc</artifactId>
235 <version>${springframework.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>org.springframework</groupId>
239 <artifactId>spring-tx</artifactId>
240 <version>${springframework.version}</version>
241 </dependency>
242 <dependency>
243 <groupId>org.springframework</groupId>
244 <artifactId>spring-context-support</artifactId>
245 <version>${springframework.version}</version>
246 </dependency>
247 <dependency>
248 <groupId>org.springframework</groupId>
249 <artifactId>spring-orm</artifactId>
250 <version>${springframework.version}</version>
251 </dependency>
252 <!-- Hibernate -->
253 <dependency>
254 <groupId>org.hibernate</groupId>
255 <artifactId>hibernate-core</artifactId>
256 <version>${hibernate.version}</version>
257 </dependency>
258 <dependency>
259 <groupId>org.hibernate</groupId>
260 <artifactId>hibernate-validator</artifactId>
261 <version>5.1.3.Final</version>
262 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400263 <!-- https://mvnrepository.com/artifact/org.json/json -->
264 <dependency>
265 <groupId>org.json</groupId>
266 <artifactId>json</artifactId>
267 <version>20160810</version>
268 </dependency>
269 <dependency>
270 <groupId>com.fasterxml.jackson.core</groupId>
271 <artifactId>jackson-annotations</artifactId>
272 <version>2.6.3</version>
273 </dependency>
274 <dependency>
275 <groupId>com.fasterxml.jackson.core</groupId>
276 <artifactId>jackson-core</artifactId>
277 <version>2.6.3</version>
278 </dependency>
279 <dependency>
280 <groupId>com.fasterxml.jackson.core</groupId>
281 <artifactId>jackson-databind</artifactId>
282 <version>2.6.3</version>
283 </dependency>
284 <dependency>
285 <groupId>com.fasterxml.jackson.module</groupId>
286 <artifactId>jackson-module-jaxb-annotations</artifactId>
287 <version>${jackson.version}</version>
288 </dependency>
289 <dependency>
290 <groupId>com.fasterxml.jackson.module</groupId>
291 <artifactId>jackson-module-jsonSchema</artifactId>
292 <version>${jackson.version}</version>
293 </dependency>
294 <dependency>
295 <groupId>com.fasterxml.jackson.dataformat</groupId>
296 <artifactId>jackson-dataformat-xml</artifactId>
297 <version>${jackson.version}</version>
298 </dependency>
299 <dependency>
300 <groupId>org.elasticsearch</groupId>
301 <artifactId>elasticsearch</artifactId>
302 <version>5.1.2</version>
303 </dependency>
304 <dependency>
305 <groupId>io.searchbox</groupId>
306 <artifactId>jest</artifactId>
307 <version>2.0.4</version>
308 <exclusions>
309 <exclusion>
310 <groupId>commons-logging</groupId>
311 <artifactId>commons-logging</artifactId>
312 </exclusion>
313 </exclusions>
314 </dependency>
315 <dependency>
316 <groupId>args4j</groupId>
317 <artifactId>args4j</artifactId>
318 <version>2.32</version>
319 </dependency>
320 <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
321 <dependency>
322 <groupId>org.apache.tomcat</groupId>
323 <artifactId>tomcat-dbcp</artifactId>
324 <version>8.5.9</version>
325 </dependency>
326
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500327 </dependencies>
328 <properties>
329 <springframework.version>4.2.0.RELEASE</springframework.version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400330 <hibernate.version>4.3.10.Final</hibernate.version>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500331 <projectversion>2.0.2</projectversion>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400332 <jackson.version>2.6.0</jackson.version>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500333 </properties>
334</project>