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