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