blob: 7cf30b97958a87d54cdf41006162ae94109e8852 [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 ================================================================================
rb7147695d88b2018-02-06 09:07:12 -05006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Guo Ruijing073cc182017-07-31 08:47:35 +00007 ================================================================================
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 Dragosh2cb76b32018-08-30 07:51:13 -040022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <artifactId>ONAP-PAP-REST</artifactId>
27 <description>ONAP-PAP-REST</description>
28 <packaging>war</packaging>
29 <parent>
30 <groupId>org.onap.policy.engine</groupId>
31 <artifactId>PolicyEngineSuite</artifactId>
ramvermad7630c42018-10-25 17:19:16 +010032 <version>1.3.1-SNAPSHOT</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040033 </parent>
34 <build>
35 <plugins>
36 <plugin>
37 <artifactId>maven-war-plugin</artifactId>
38 <configuration>
39 <attachClasses>true</attachClasses>
40 <webResources>
41 <webResource>
42 <directory>src/main/java/</directory>
43 <targetPath>WEB-INF/classes/</targetPath>
44 <includes>
45 <include>hibernate.cfg.xml</include>
46 </includes>
47 </webResource>
48 </webResources>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-compiler-plugin</artifactId>
54 <configuration>
55 <source>1.8</source>
56 <target>1.8</target>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61 <dependencies>
62 <dependency>
63 <!-- To support integrity-audit audit of BackupMonitorEntity table -->
64 <groupId>org.onap.policy.engine</groupId>
65 <artifactId>PolicyEngineUtils</artifactId>
66 <version>${project.version}</version>
67 <exclusions>
68 <exclusion>
69 <groupId>com.att.aft</groupId>
70 <artifactId>dme2</artifactId>
71 </exclusion>
72 <exclusion>
73 <groupId>org.json</groupId>
74 <artifactId>json</artifactId>
75 </exclusion>
76 <exclusion>
77 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
78 <artifactId>dmaapClient</artifactId>
79 </exclusion>
80 <exclusion>
81 <groupId>com.att.nsa</groupId>
82 <artifactId>cambriaClient</artifactId>
83 </exclusion>
84 <exclusion>
85 <groupId>org.onap.aaf.cadi</groupId>
86 <artifactId>cadi-aaf</artifactId>
87 </exclusion>
88 </exclusions>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.commons</groupId>
92 <artifactId>commons-lang3</artifactId>
93 <version>3.4</version>
94 </dependency>
95 <dependency>
96 <groupId>org.onap.policy.engine</groupId>
97 <artifactId>ONAP-PDP</artifactId>
98 <version>${project.version}</version>
99 <exclusions>
100 <exclusion>
101 <groupId>org.json</groupId>
102 <artifactId>json</artifactId>
103 </exclusion>
104 </exclusions>
105 </dependency>
106 <dependency>
107 <groupId>org.onap.policy.common</groupId>
108 <artifactId>ONAP-Logging</artifactId>
ramvermad7630c42018-10-25 17:19:16 +0100109 <version>${version.policy.common}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400110 </dependency>
111 <dependency>
112 <groupId>javax.servlet</groupId>
113 <artifactId>javax.servlet-api</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>commons-logging</groupId>
117 <artifactId>commons-logging</artifactId>
118 <version>1.1.3</version>
119 <exclusions>
120 <exclusion>
121 <groupId>javax.servlet</groupId>
122 <artifactId>servlet-api</artifactId>
123 </exclusion>
124 </exclusions>
125 </dependency>
126 <dependency>
127 <groupId>org.apache.commons</groupId>
128 <artifactId>commons-compress</artifactId>
Pamela Dragosh207e1ee2018-09-14 11:46:08 -0400129 <version>${commons.compress.version}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400130 </dependency>
131 <dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400132 <groupId>org.apache.logging.log4j</groupId>
133 <artifactId>log4j-core</artifactId>
134 <version>2.8.2</version>
135 </dependency>
136 <dependency>
137 <groupId>log4j</groupId>
138 <artifactId>apache-log4j-extras</artifactId>
139 <version>1.2.17</version>
140 </dependency>
141 <dependency>
142 <groupId>commons-io</groupId>
143 <artifactId>commons-io</artifactId>
144 <version>2.4</version>
145 </dependency>
146 <dependency>
147 <groupId>io.netty</groupId>
148 <artifactId>netty</artifactId>
149 <version>3.9.7.Final</version>
150 </dependency>
151 <dependency>
152 <groupId>com.google.guava</groupId>
153 <artifactId>guava</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>org.eclipse.jgit</groupId>
157 <artifactId>org.eclipse.jgit</artifactId>
Pamela Dragosh8287e342018-09-14 11:23:32 -0400158 <version>5.0.3.201809091024-r</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400159 </dependency>
160 <dependency>
161 <groupId>org.apache.tomcat</groupId>
162 <artifactId>tomcat-jdbc</artifactId>
163 <version>8.0.24</version>
164 </dependency>
165 <dependency>
166 <groupId>com.h2database</groupId>
167 <artifactId>h2</artifactId>
168 </dependency>
169 <dependency>
170 <groupId>com.github.fge</groupId>
171 <artifactId>json-patch</artifactId>
172 <version>1.9</version>
173 </dependency>
174 <dependency>
175 <groupId>org.eclipse.persistence</groupId>
176 <artifactId>javax.persistence</artifactId>
177 <version>2.1.0</version>
178 </dependency>
179 <dependency>
180 <groupId>org.eclipse.persistence</groupId>
181 <artifactId>eclipselink</artifactId>
182 <version>2.6.0</version>
183 </dependency>
184 <dependency>
Tej, Tarun98ab7082017-09-19 23:14:33 -0400185 <groupId>org.mariadb.jdbc</groupId>
186 <artifactId>mariadb-java-client</artifactId>
Tej, Tarun98ab7082017-09-19 23:14:33 -0400187 </dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400188 <dependency>
189 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
190 <artifactId>policy-yaml</artifactId>
ramvermad7630c42018-10-25 17:19:16 +0100191 <version>${version.policy.drools-application}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400192 </dependency>
193 <!-- Spring -->
194 <dependency>
195 <groupId>org.springframework</groupId>
196 <artifactId>spring-core</artifactId>
197 <version>${springframework.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>org.springframework</groupId>
201 <artifactId>spring-web</artifactId>
202 <version>${springframework.version}</version>
203 </dependency>
204 <dependency>
205 <groupId>org.springframework</groupId>
206 <artifactId>spring-webmvc</artifactId>
207 <version>${springframework.version}</version>
208 </dependency>
209 <dependency>
210 <groupId>org.springframework</groupId>
211 <artifactId>spring-tx</artifactId>
212 <version>${springframework.version}</version>
213 </dependency>
214 <dependency>
215 <groupId>org.springframework</groupId>
216 <artifactId>spring-context-support</artifactId>
217 <version>${springframework.version}</version>
218 </dependency>
219 <dependency>
220 <groupId>org.springframework</groupId>
221 <artifactId>spring-orm</artifactId>
222 <version>${springframework.version}</version>
223 </dependency>
224 <!-- Hibernate -->
225 <dependency>
226 <groupId>org.hibernate</groupId>
227 <artifactId>hibernate-core</artifactId>
228 <version>${hibernate.version}</version>
229 </dependency>
230 <dependency>
231 <groupId>org.hibernate</groupId>
232 <artifactId>hibernate-validator</artifactId>
233 <version>5.4.2.Final</version>
234 </dependency>
235 <!-- https://mvnrepository.com/artifact/org.json/json -->
236 <dependency>
237 <groupId>org.json</groupId>
238 <artifactId>json</artifactId>
239 <version>20160810</version>
240 </dependency>
241 <dependency>
242 <groupId>com.fasterxml.jackson.core</groupId>
243 <artifactId>jackson-annotations</artifactId>
244 <version>${jackson.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>com.fasterxml.jackson.core</groupId>
248 <artifactId>jackson-core</artifactId>
249 <version>${jackson.version}</version>
250 </dependency>
251 <dependency>
252 <groupId>com.fasterxml.jackson.module</groupId>
253 <artifactId>jackson-module-jaxb-annotations</artifactId>
254 <version>${jackson.version}</version>
255 </dependency>
256 <dependency>
257 <groupId>com.fasterxml.jackson.module</groupId>
258 <artifactId>jackson-module-jsonSchema</artifactId>
259 <version>${jackson.version}</version>
260 </dependency>
261 <dependency>
262 <groupId>com.fasterxml.jackson.dataformat</groupId>
263 <artifactId>jackson-dataformat-xml</artifactId>
264 <version>${jackson.version}</version>
265 </dependency>
266 <dependency>
267 <groupId>org.elasticsearch</groupId>
268 <artifactId>elasticsearch</artifactId>
Pamela Dragosh8287e342018-09-14 11:23:32 -0400269 <version>${elasticsearch.version}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400270 </dependency>
271 <dependency>
272 <groupId>io.searchbox</groupId>
273 <artifactId>jest</artifactId>
274 <version>2.0.4</version>
275 <exclusions>
276 <exclusion>
277 <groupId>commons-logging</groupId>
278 <artifactId>commons-logging</artifactId>
279 </exclusion>
280 </exclusions>
281 </dependency>
282 <dependency>
283 <groupId>args4j</groupId>
284 <artifactId>args4j</artifactId>
285 <version>2.32</version>
286 </dependency>
287 <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
288 <dependency>
289 <groupId>org.apache.tomcat</groupId>
290 <artifactId>tomcat-dbcp</artifactId>
291 <version>8.5.9</version>
292 </dependency>
293 </dependencies>
294 <properties>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400295 <hibernate.version>4.3.10.Final</hibernate.version>
296 <projectversion>2.0.2</projectversion>
297 </properties>
Guo Ruijing073cc182017-07-31 08:47:35 +0000298</project>