policy/engine jdk11 upgrades
[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             </exclusions>
106         </dependency>
107         <dependency>
108             <groupId>org.onap.policy.common</groupId>
109             <artifactId>ONAP-Logging</artifactId>
110             <version>${version.policy.common}</version>
111         </dependency>
112         <dependency>
113             <groupId>javax.servlet</groupId>
114             <artifactId>javax.servlet-api</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>javax.xml.bind</groupId>
118             <artifactId>jaxb-api</artifactId>
119             <version>${version.javax.bind}</version>
120         </dependency>
121         <dependency>
122             <groupId>org.glassfish.jaxb</groupId>
123             <artifactId>jaxb-runtime</artifactId>
124             <version>2.3.2</version>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>javax.activation</groupId>
129             <artifactId>javax.activation-api</artifactId>
130             <version>1.2.0</version>
131         </dependency>
132         <dependency>
133             <groupId>javax.xml</groupId>
134             <artifactId>jaxp-api</artifactId>
135             <version>1.4.2</version>
136         </dependency>
137         <dependency>
138             <groupId>commons-logging</groupId>
139             <artifactId>commons-logging</artifactId>
140             <version>1.1.3</version>
141             <exclusions>
142                 <exclusion>
143                     <groupId>javax.servlet</groupId>
144                     <artifactId>servlet-api</artifactId>
145                 </exclusion>
146             </exclusions>
147         </dependency>
148         <dependency>
149             <groupId>org.apache.commons</groupId>
150             <artifactId>commons-compress</artifactId>
151             <version>${commons.compress.version}</version>
152         </dependency>
153         <dependency>
154             <groupId>org.apache.logging.log4j</groupId>
155             <artifactId>log4j-core</artifactId>
156             <version>2.8.2</version>
157         </dependency>
158         <dependency>
159             <groupId>log4j</groupId>
160             <artifactId>apache-log4j-extras</artifactId>
161             <version>1.2.17</version>
162         </dependency>
163         <dependency>
164             <groupId>commons-io</groupId>
165             <artifactId>commons-io</artifactId>
166             <version>2.4</version>
167         </dependency>
168         <dependency>
169             <groupId>io.netty</groupId>
170             <artifactId>netty</artifactId>
171             <version>3.9.7.Final</version>
172         </dependency>
173         <dependency>
174             <groupId>com.google.guava</groupId>
175             <artifactId>guava</artifactId>
176         </dependency>
177         <dependency>
178             <groupId>org.eclipse.jgit</groupId>
179             <artifactId>org.eclipse.jgit</artifactId>
180             <version>5.0.3.201809091024-r</version>
181         </dependency>
182         <dependency>
183             <groupId>org.apache.tomcat</groupId>
184             <artifactId>tomcat-jdbc</artifactId>
185             <version>8.0.24</version>
186         </dependency>
187         <dependency>
188             <groupId>com.h2database</groupId>
189             <artifactId>h2</artifactId>
190         </dependency>
191         <dependency>
192             <groupId>com.github.fge</groupId>
193             <artifactId>json-patch</artifactId>
194             <version>1.9</version>
195         </dependency>
196         <dependency>
197             <groupId>org.eclipse.persistence</groupId>
198             <artifactId>javax.persistence</artifactId>
199         </dependency>
200         <dependency>
201             <groupId>org.eclipse.persistence</groupId>
202             <artifactId>eclipselink</artifactId>
203         </dependency>
204         <dependency>
205             <groupId>org.mariadb.jdbc</groupId>
206             <artifactId>mariadb-java-client</artifactId>
207         </dependency>
208         <dependency>
209             <groupId>org.onap.policy.models.policy-models-interactions</groupId>
210             <artifactId>model-yaml</artifactId>
211             <version>${version.policy.models}</version>
212         </dependency>
213         <!-- Spring -->
214         <dependency>
215             <groupId>org.springframework</groupId>
216             <artifactId>spring-core</artifactId>
217             <version>${springframework.version}</version>
218         </dependency>
219         <dependency>
220             <groupId>org.springframework</groupId>
221             <artifactId>spring-web</artifactId>
222             <version>${springframework.version}</version>
223         </dependency>
224         <dependency>
225             <groupId>org.springframework</groupId>
226             <artifactId>spring-webmvc</artifactId>
227             <version>${springframework.version}</version>
228         </dependency>
229         <dependency>
230             <groupId>org.springframework</groupId>
231             <artifactId>spring-tx</artifactId>
232             <version>${springframework.version}</version>
233         </dependency>
234         <dependency>
235             <groupId>org.springframework</groupId>
236             <artifactId>spring-context-support</artifactId>
237             <version>${springframework.version}</version>
238         </dependency>
239         <dependency>
240             <groupId>org.springframework</groupId>
241             <artifactId>spring-orm</artifactId>
242             <version>${springframework.version}</version>
243         </dependency>
244         <!-- Hibernate -->
245         <dependency>
246             <groupId>org.hibernate</groupId>
247             <artifactId>hibernate-core</artifactId>
248             <version>${hibernate.version}</version>
249         </dependency>
250         <dependency>
251             <groupId>org.hibernate</groupId>
252             <artifactId>hibernate-validator</artifactId>
253             <version>5.4.2.Final</version>
254         </dependency>
255         <!-- https://mvnrepository.com/artifact/org.json/json -->
256         <dependency>
257             <groupId>org.json</groupId>
258             <artifactId>json</artifactId>
259             <version>20160810</version>
260         </dependency>
261         <dependency>
262             <groupId>com.fasterxml.jackson.core</groupId>
263             <artifactId>jackson-annotations</artifactId>
264             <version>${jackson.version}</version>
265         </dependency>
266         <dependency>
267             <groupId>com.fasterxml.jackson.core</groupId>
268             <artifactId>jackson-core</artifactId>
269             <version>${jackson.version}</version>
270         </dependency>
271         <dependency>
272             <groupId>com.fasterxml.jackson.module</groupId>
273             <artifactId>jackson-module-jaxb-annotations</artifactId>
274             <version>${jackson.version}</version>
275         </dependency>
276         <dependency>
277             <groupId>com.fasterxml.jackson.module</groupId>
278             <artifactId>jackson-module-jsonSchema</artifactId>
279             <version>${jackson.version}</version>
280         </dependency>
281         <dependency>
282             <groupId>com.fasterxml.jackson.dataformat</groupId>
283             <artifactId>jackson-dataformat-xml</artifactId>
284             <version>${jackson.version}</version>
285         </dependency>
286         <dependency>
287             <groupId>org.elasticsearch</groupId>
288             <artifactId>elasticsearch</artifactId>
289             <version>${elasticsearch.version}</version>
290         </dependency>
291         <dependency>
292             <groupId>io.searchbox</groupId>
293             <artifactId>jest</artifactId>
294             <version>2.0.4</version>
295             <exclusions>
296                 <exclusion>
297                     <groupId>commons-logging</groupId>
298                     <artifactId>commons-logging</artifactId>
299                 </exclusion>
300             </exclusions>
301         </dependency>
302         <dependency>
303             <groupId>args4j</groupId>
304             <artifactId>args4j</artifactId>
305             <version>2.32</version>
306         </dependency>
307         <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
308         <dependency>
309             <groupId>org.apache.tomcat</groupId>
310             <artifactId>tomcat-dbcp</artifactId>
311             <version>8.5.9</version>
312         </dependency>
313     </dependencies>
314 </project>