377674abbcbb0a58a5f910b186f6b2f305c92a3f
[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-2020 AT&T Intellectual Property. All rights reserved.
7   Modifications Copyright (C) 2019 Nordix Foundation.
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25     <artifactId>ONAP-PAP-REST</artifactId>
26     <description>ONAP-PAP-REST</description>
27     <packaging>war</packaging>
28     <parent>
29         <groupId>org.onap.policy.engine</groupId>
30         <artifactId>PolicyEngineSuite</artifactId>
31         <version>1.6.0-SNAPSHOT</version>
32     </parent>
33     <properties>
34         <hibernate.version>4.3.10.Final</hibernate.version>
35     </properties>
36     <build>
37         <plugins>
38             <plugin>
39                 <artifactId>maven-war-plugin</artifactId>
40                 <configuration>
41                     <attachClasses>true</attachClasses>
42                     <webResources>
43                         <webResource>
44                             <directory>src/main/java/</directory>
45                             <targetPath>WEB-INF/classes/</targetPath>
46                             <includes>
47                                 <include>hibernate.cfg.xml</include>
48                             </includes>
49                         </webResource>
50                     </webResources>
51                 </configuration>
52             </plugin>
53             <plugin>
54                 <groupId>org.apache.maven.plugins</groupId>
55                 <artifactId>maven-compiler-plugin</artifactId>
56                 <configuration>
57                     <release>${java.version}</release>
58                 </configuration>
59             </plugin>
60         </plugins>
61     </build>
62     <dependencies>
63         <dependency>
64             <!-- To support integrity-audit audit of BackupMonitorEntity table -->
65             <groupId>org.onap.policy.engine</groupId>
66             <artifactId>PolicyEngineUtils</artifactId>
67             <version>${project.version}</version>
68             <exclusions>
69                 <exclusion>
70                     <groupId>com.att.aft</groupId>
71                     <artifactId>dme2</artifactId>
72                 </exclusion>
73                 <exclusion>
74                     <groupId>org.json</groupId>
75                     <artifactId>json</artifactId>
76                 </exclusion>
77                 <exclusion>
78                     <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
79                     <artifactId>dmaapClient</artifactId>
80                 </exclusion>
81                 <exclusion>
82                     <groupId>com.att.nsa</groupId>
83                     <artifactId>cambriaClient</artifactId>
84                 </exclusion>
85                 <exclusion>
86                     <groupId>org.onap.aaf.cadi</groupId>
87                     <artifactId>cadi-aaf</artifactId>
88                 </exclusion>
89             </exclusions>
90         </dependency>
91         <dependency>
92             <groupId>org.apache.commons</groupId>
93             <artifactId>commons-lang3</artifactId>
94             <version>3.4</version>
95         </dependency>
96         <dependency>
97             <groupId>org.onap.policy.engine</groupId>
98             <artifactId>ONAP-PDP</artifactId>
99             <version>${project.version}</version>
100             <exclusions>
101                 <exclusion>
102                     <groupId>org.json</groupId>
103                     <artifactId>json</artifactId>
104                 </exclusion>
105                 <exclusion>
106                     <groupId>xml-apis</groupId>
107                     <artifactId>xml-apis</artifactId>
108                 </exclusion>
109             </exclusions>
110         </dependency>
111         <dependency>
112             <groupId>org.onap.policy.common</groupId>
113             <artifactId>ONAP-Logging</artifactId>
114             <version>${version.policy.common}</version>
115         </dependency>
116         <dependency>
117             <groupId>javax.servlet</groupId>
118             <artifactId>javax.servlet-api</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>javax.xml.bind</groupId>
122             <artifactId>jaxb-api</artifactId>
123             <version>${version.javax.bind}</version>
124         </dependency>
125         <dependency>
126             <groupId>org.glassfish.jaxb</groupId>
127             <artifactId>jaxb-runtime</artifactId>
128             <version>2.3.2</version>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>javax.activation</groupId>
133             <artifactId>javax.activation-api</artifactId>
134             <version>1.2.0</version>
135         </dependency>
136         <dependency>
137             <groupId>commons-logging</groupId>
138             <artifactId>commons-logging</artifactId>
139             <version>1.1.3</version>
140             <exclusions>
141                 <exclusion>
142                     <groupId>javax.servlet</groupId>
143                     <artifactId>servlet-api</artifactId>
144                 </exclusion>
145             </exclusions>
146         </dependency>
147         <dependency>
148             <groupId>org.apache.commons</groupId>
149             <artifactId>commons-compress</artifactId>
150             <version>${commons.compress.version}</version>
151         </dependency>
152         <dependency>
153             <groupId>org.apache.logging.log4j</groupId>
154             <artifactId>log4j-core</artifactId>
155             <version>2.8.2</version>
156         </dependency>
157         <dependency>
158             <groupId>log4j</groupId>
159             <artifactId>apache-log4j-extras</artifactId>
160             <version>1.2.17</version>
161         </dependency>
162         <dependency>
163             <groupId>commons-io</groupId>
164             <artifactId>commons-io</artifactId>
165             <version>2.4</version>
166         </dependency>
167         <dependency>
168             <groupId>io.netty</groupId>
169             <artifactId>netty</artifactId>
170             <version>3.9.7.Final</version>
171         </dependency>
172         <dependency>
173             <groupId>com.google.guava</groupId>
174             <artifactId>guava</artifactId>
175         </dependency>
176         <dependency>
177             <groupId>org.eclipse.jgit</groupId>
178             <artifactId>org.eclipse.jgit</artifactId>
179             <version>5.0.3.201809091024-r</version>
180         </dependency>
181         <dependency>
182             <groupId>org.apache.tomcat</groupId>
183             <artifactId>tomcat-jdbc</artifactId>
184             <version>8.0.24</version>
185         </dependency>
186         <dependency>
187             <groupId>com.h2database</groupId>
188             <artifactId>h2</artifactId>
189         </dependency>
190         <dependency>
191             <groupId>com.github.fge</groupId>
192             <artifactId>json-patch</artifactId>
193             <version>1.9</version>
194         </dependency>
195         <dependency>
196             <groupId>org.eclipse.persistence</groupId>
197             <artifactId>javax.persistence</artifactId>
198         </dependency>
199         <dependency>
200             <groupId>org.eclipse.persistence</groupId>
201             <artifactId>eclipselink</artifactId>
202         </dependency>
203         <dependency>
204             <groupId>org.mariadb.jdbc</groupId>
205             <artifactId>mariadb-java-client</artifactId>
206         </dependency>
207         <dependency>
208             <groupId>org.onap.policy.models.policy-models-interactions</groupId>
209             <artifactId>model-yaml</artifactId>
210             <version>${version.policy.models}</version>
211         </dependency>
212         <!-- Spring -->
213         <dependency>
214             <groupId>org.springframework</groupId>
215             <artifactId>spring-core</artifactId>
216             <version>${springframework.version}</version>
217         </dependency>
218         <dependency>
219             <groupId>org.springframework</groupId>
220             <artifactId>spring-web</artifactId>
221             <version>${springframework.version}</version>
222         </dependency>
223         <dependency>
224             <groupId>org.springframework</groupId>
225             <artifactId>spring-webmvc</artifactId>
226             <version>${springframework.version}</version>
227         </dependency>
228         <dependency>
229             <groupId>org.springframework</groupId>
230             <artifactId>spring-tx</artifactId>
231             <version>${springframework.version}</version>
232         </dependency>
233         <dependency>
234             <groupId>org.springframework</groupId>
235             <artifactId>spring-context-support</artifactId>
236             <version>${springframework.version}</version>
237         </dependency>
238         <dependency>
239             <groupId>org.springframework</groupId>
240             <artifactId>spring-orm</artifactId>
241             <version>${springframework.version}</version>
242         </dependency>
243         <!-- Hibernate -->
244         <dependency>
245             <groupId>org.hibernate</groupId>
246             <artifactId>hibernate-core</artifactId>
247             <version>${hibernate.version}</version>
248             <exclusions>
249                 <exclusion>
250                     <groupId>xml-apis</groupId>
251                     <artifactId>xml-apis</artifactId>
252                 </exclusion>
253             </exclusions>
254         </dependency>
255         <dependency>
256             <groupId>org.hibernate</groupId>
257             <artifactId>hibernate-validator</artifactId>
258             <version>5.4.2.Final</version>
259         </dependency>
260         <!-- https://mvnrepository.com/artifact/org.json/json -->
261         <dependency>
262             <groupId>org.json</groupId>
263             <artifactId>json</artifactId>
264             <version>20160810</version>
265         </dependency>
266         <dependency>
267             <groupId>com.fasterxml.jackson.core</groupId>
268             <artifactId>jackson-annotations</artifactId>
269             <version>${jackson.version}</version>
270         </dependency>
271         <dependency>
272             <groupId>com.fasterxml.jackson.core</groupId>
273             <artifactId>jackson-core</artifactId>
274             <version>${jackson.version}</version>
275         </dependency>
276         <dependency>
277             <groupId>com.fasterxml.jackson.module</groupId>
278             <artifactId>jackson-module-jaxb-annotations</artifactId>
279             <version>${jackson.version}</version>
280         </dependency>
281         <dependency>
282             <groupId>com.fasterxml.jackson.module</groupId>
283             <artifactId>jackson-module-jsonSchema</artifactId>
284             <version>${jackson.version}</version>
285         </dependency>
286         <dependency>
287             <groupId>com.fasterxml.jackson.dataformat</groupId>
288             <artifactId>jackson-dataformat-xml</artifactId>
289             <version>${jackson.version}</version>
290         </dependency>
291         <dependency>
292             <groupId>org.elasticsearch</groupId>
293             <artifactId>elasticsearch</artifactId>
294             <version>${elasticsearch.version}</version>
295         </dependency>
296         <dependency>
297             <groupId>io.searchbox</groupId>
298             <artifactId>jest</artifactId>
299             <version>2.0.4</version>
300             <exclusions>
301                 <exclusion>
302                     <groupId>commons-logging</groupId>
303                     <artifactId>commons-logging</artifactId>
304                 </exclusion>
305             </exclusions>
306         </dependency>
307         <dependency>
308             <groupId>args4j</groupId>
309             <artifactId>args4j</artifactId>
310             <version>2.32</version>
311         </dependency>
312         <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
313         <dependency>
314             <groupId>org.apache.tomcat</groupId>
315             <artifactId>tomcat-dbcp</artifactId>
316             <version>8.5.9</version>
317         </dependency>
318     </dependencies>
319 </project>