Merge "Unit/SONAR/Checkstyle in ONAP-REST"
[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-2019 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                     <source>1.8</source>
58                     <target>1.8</target>
59                 </configuration>
60             </plugin>
61         </plugins>
62     </build>
63     <dependencies>
64         <dependency>
65             <!-- To support integrity-audit audit of BackupMonitorEntity table -->
66             <groupId>org.onap.policy.engine</groupId>
67             <artifactId>PolicyEngineUtils</artifactId>
68             <version>${project.version}</version>
69             <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>
78                 <exclusion>
79                     <groupId>org.onap.dmaap.messagerouter.dmaapclient</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>org.onap.aaf.cadi</groupId>
88                     <artifactId>cadi-aaf</artifactId>
89                 </exclusion>
90             </exclusions>
91         </dependency>
92         <dependency>
93             <groupId>org.apache.commons</groupId>
94             <artifactId>commons-lang3</artifactId>
95             <version>3.4</version>
96         </dependency>
97         <dependency>
98             <groupId>org.onap.policy.engine</groupId>
99             <artifactId>ONAP-PDP</artifactId>
100             <version>${project.version}</version>
101             <exclusions>
102                 <exclusion>
103                     <groupId>org.json</groupId>
104                     <artifactId>json</artifactId>
105                 </exclusion>
106             </exclusions>
107         </dependency>
108         <dependency>
109             <groupId>org.onap.policy.common</groupId>
110             <artifactId>ONAP-Logging</artifactId>
111             <version>${version.policy.common}</version>
112         </dependency>
113         <dependency>
114             <groupId>javax.servlet</groupId>
115             <artifactId>javax.servlet-api</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>commons-logging</groupId>
119             <artifactId>commons-logging</artifactId>
120             <version>1.1.3</version>
121             <exclusions>
122                 <exclusion>
123                     <groupId>javax.servlet</groupId>
124                     <artifactId>servlet-api</artifactId>
125                 </exclusion>
126             </exclusions>
127         </dependency>
128         <dependency>
129             <groupId>org.apache.commons</groupId>
130             <artifactId>commons-compress</artifactId>
131             <version>${commons.compress.version}</version>
132         </dependency>
133         <dependency>
134             <groupId>org.apache.logging.log4j</groupId>
135             <artifactId>log4j-core</artifactId>
136             <version>2.8.2</version>
137         </dependency>
138         <dependency>
139             <groupId>log4j</groupId>
140             <artifactId>apache-log4j-extras</artifactId>
141             <version>1.2.17</version>
142         </dependency>
143         <dependency>
144             <groupId>commons-io</groupId>
145             <artifactId>commons-io</artifactId>
146             <version>2.4</version>
147         </dependency>
148         <dependency>
149             <groupId>io.netty</groupId>
150             <artifactId>netty</artifactId>
151             <version>3.9.7.Final</version>
152         </dependency>
153         <dependency>
154             <groupId>com.google.guava</groupId>
155             <artifactId>guava</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.eclipse.jgit</groupId>
159             <artifactId>org.eclipse.jgit</artifactId>
160             <version>5.0.3.201809091024-r</version>
161         </dependency>
162         <dependency>
163             <groupId>org.apache.tomcat</groupId>
164             <artifactId>tomcat-jdbc</artifactId>
165             <version>8.0.24</version>
166         </dependency>
167         <dependency>
168             <groupId>com.h2database</groupId>
169             <artifactId>h2</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>com.github.fge</groupId>
173             <artifactId>json-patch</artifactId>
174             <version>1.9</version>
175         </dependency>
176         <dependency>
177             <groupId>org.eclipse.persistence</groupId>
178             <artifactId>javax.persistence</artifactId>
179         </dependency>
180         <dependency>
181             <groupId>org.eclipse.persistence</groupId>
182             <artifactId>eclipselink</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>org.mariadb.jdbc</groupId>
186             <artifactId>mariadb-java-client</artifactId>
187         </dependency>
188         <dependency>
189             <groupId>org.onap.policy.models.policy-models-interactions</groupId>
190             <artifactId>model-yaml</artifactId>
191             <version>${version.policy.models}</version>
192         </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>
269             <version>${elasticsearch.version}</version>
270         </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 </project>