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