Clean up pom.xml and fix CLM
[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-2018 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24
25         <modelVersion>4.0.0</modelVersion>
26         <artifactId>ONAP-PAP-REST</artifactId>
27         <description>ONAP-PAP-REST</description>
28         <packaging>war</packaging>
29         <parent>
30                 <groupId>org.onap.policy.engine</groupId>
31                 <artifactId>PolicyEngineSuite</artifactId>
32                 <version>1.2.0-SNAPSHOT</version>
33         </parent>
34         <build>
35                 <plugins>
36                         <plugin>
37                                 <artifactId>maven-war-plugin</artifactId>
38                                 <version>2.1</version>
39                                 <configuration>
40                                         <attachClasses>true</attachClasses>
41                                         <webResources>
42                                                 <webResource>
43                                                         <directory>src/main/java/</directory>
44                                                         <targetPath>WEB-INF/classes/</targetPath>
45                                                         <includes>
46                                                                 <include>hibernate.cfg.xml</include>
47                                                         </includes>
48                                                 </webResource>
49                                         </webResources>
50                                 </configuration>
51                         </plugin>
52                         <plugin>
53                                 <groupId>org.apache.maven.plugins</groupId>
54                                 <artifactId>maven-compiler-plugin</artifactId>
55                                 <version>3.2</version>
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>com.att.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>${project.version}</version>
112                         <exclusions>
113                                 <exclusion>
114                                         <groupId>org.powermock</groupId>
115                                         <artifactId>powermock-module-junit4</artifactId>
116                                 </exclusion>
117                                 <exclusion>
118                                         <groupId>org.powermock</groupId>
119                                         <artifactId>powermock-api-mockito</artifactId>
120                                 </exclusion>
121                         </exclusions>
122                 </dependency>
123                 <dependency>
124                         <groupId>javax.servlet</groupId>
125                         <artifactId>javax.servlet-api</artifactId>
126                         <version>3.1.0</version>
127                 </dependency>
128                 <dependency>
129                         <groupId>commons-logging</groupId>
130                         <artifactId>commons-logging</artifactId>
131                         <version>1.1.3</version>
132                         <exclusions>
133                                 <exclusion>
134                                         <groupId>javax.servlet</groupId>
135                                         <artifactId>servlet-api</artifactId>
136                                 </exclusion>
137                         </exclusions>
138                 </dependency>
139                 <dependency>
140                         <groupId>org.apache.commons</groupId>
141                         <artifactId>commons-compress</artifactId>
142                         <version>1.8</version>
143                 </dependency>
144                 <dependency>
145                         <groupId>commons-fileupload</groupId>
146                         <artifactId>commons-fileupload</artifactId>
147                         <version>${commons.fileupload.version}</version>
148                 </dependency>
149                 <dependency>
150                         <groupId>org.apache.logging.log4j</groupId>
151                         <artifactId>log4j-core</artifactId>
152                         <version>2.8.2</version>
153                 </dependency>
154                 <dependency>
155                         <groupId>log4j</groupId>
156                         <artifactId>apache-log4j-extras</artifactId>
157                         <version>1.2.17</version>
158                 </dependency>
159                 <dependency>
160                         <groupId>commons-io</groupId>
161                         <artifactId>commons-io</artifactId>
162                         <version>2.4</version>
163                 </dependency>
164                 <dependency>
165                         <groupId>io.netty</groupId>
166                         <artifactId>netty</artifactId>
167                         <version>3.5.0.Final</version>
168                 </dependency>
169                 <dependency>
170                         <groupId>com.google.guava</groupId>
171                         <artifactId>guava</artifactId>
172                         <version>14.0.1</version>
173                 </dependency>
174                 <dependency>
175                         <groupId>org.eclipse.jgit</groupId>
176                         <artifactId>org.eclipse.jgit</artifactId>
177                         <version>3.2.0.201312181205-r</version>
178                 </dependency>
179                 <dependency>
180                         <groupId>junit</groupId>
181                         <artifactId>junit</artifactId>
182                         <version>4.11</version>
183                         <scope>test</scope>
184                 </dependency>
185                 <dependency>
186                         <groupId>org.apache.tomcat</groupId>
187                         <artifactId>tomcat-jdbc</artifactId>
188                         <version>8.0.24</version>
189                 </dependency>
190                 <dependency>
191                         <groupId>com.h2database</groupId>
192                         <artifactId>h2</artifactId>
193                 </dependency>
194                 <dependency>
195                         <groupId>com.github.fge</groupId>
196                         <artifactId>json-patch</artifactId>
197                         <version>1.9</version>
198                 </dependency>
199                 <dependency>
200                         <groupId>org.eclipse.persistence</groupId>
201                         <artifactId>javax.persistence</artifactId>
202                         <version>2.1.0</version>
203                 </dependency>
204                 <dependency>
205                         <groupId>org.eclipse.persistence</groupId>
206                         <artifactId>eclipselink</artifactId>
207                         <version>2.6.0</version>
208                 </dependency>
209                 <dependency>
210             <groupId>org.mariadb.jdbc</groupId>
211             <artifactId>mariadb-java-client</artifactId>
212             <version>2.1.1</version>
213         </dependency>
214                 <dependency>
215                         <groupId>org.springframework</groupId>
216                         <artifactId>spring-mock</artifactId>
217                         <version>2.0.8</version>
218                 </dependency>
219                 <dependency>
220                         <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
221                         <artifactId>policy-yaml</artifactId>
222                         <version>${project.version}</version>
223                 </dependency>
224                 <dependency>
225                         <groupId>com.mockrunner</groupId>
226                         <artifactId>mockrunner</artifactId>
227                         <version>0.3.1</version>
228                 </dependency>
229                 <!-- Spring -->
230                 <dependency>
231                         <groupId>org.springframework</groupId>
232                         <artifactId>spring-core</artifactId>
233                         <version>${springframework.version}</version>
234                 </dependency>
235                 <dependency>
236                         <groupId>org.springframework</groupId>
237                         <artifactId>spring-web</artifactId>
238                         <version>${springframework.version}</version>
239                 </dependency>
240                 <dependency>
241                         <groupId>org.springframework</groupId>
242                         <artifactId>spring-webmvc</artifactId>
243                         <version>${springframework.version}</version>
244                 </dependency>
245                 <dependency>
246                         <groupId>org.springframework</groupId>
247                         <artifactId>spring-tx</artifactId>
248                         <version>${springframework.version}</version>
249                 </dependency>
250                 <dependency>
251                         <groupId>org.springframework</groupId>
252                         <artifactId>spring-context-support</artifactId>
253                         <version>${springframework.version}</version>
254                 </dependency>
255                 <dependency>
256                         <groupId>org.springframework</groupId>
257                         <artifactId>spring-orm</artifactId>
258                         <version>${springframework.version}</version>
259                 </dependency>
260                 <!-- Hibernate -->
261                 <dependency>
262                         <groupId>org.hibernate</groupId>
263                         <artifactId>hibernate-core</artifactId>
264                         <version>${hibernate.version}</version>
265                 </dependency>
266                 <dependency>
267                         <groupId>org.hibernate</groupId>
268                         <artifactId>hibernate-validator</artifactId>
269                         <version>5.1.3.Final</version>
270                 </dependency>
271                 <!-- https://mvnrepository.com/artifact/org.json/json -->
272                 <dependency>
273                         <groupId>org.json</groupId>
274                         <artifactId>json</artifactId>
275                         <version>20160810</version>
276                 </dependency>
277                 <dependency>
278                         <groupId>com.fasterxml.jackson.core</groupId>
279                         <artifactId>jackson-annotations</artifactId>
280                         <version>${jackson.version}</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>com.fasterxml.jackson.core</groupId>
284                         <artifactId>jackson-core</artifactId>
285                         <version>${jackson.version}</version>
286                 </dependency>
287                 <dependency>
288                         <groupId>com.fasterxml.jackson.core</groupId>
289                         <artifactId>jackson-databind</artifactId>
290                         <version>${jackson.version}</version>
291                 </dependency>
292                 <dependency>
293                         <groupId>com.fasterxml.jackson.module</groupId>
294                         <artifactId>jackson-module-jaxb-annotations</artifactId>
295                         <version>${jackson.version}</version>
296                 </dependency>
297                 <dependency>
298                         <groupId>com.fasterxml.jackson.module</groupId>
299                         <artifactId>jackson-module-jsonSchema</artifactId>
300                         <version>${jackson.version}</version>
301                 </dependency>
302                 <dependency>
303                         <groupId>com.fasterxml.jackson.dataformat</groupId>
304                         <artifactId>jackson-dataformat-xml</artifactId>
305                         <version>${jackson.version}</version>
306                 </dependency>
307                 <dependency>
308                         <groupId>org.elasticsearch</groupId>
309                         <artifactId>elasticsearch</artifactId>
310                         <version>5.1.2</version>
311                 </dependency>
312                 <dependency>
313                         <groupId>io.searchbox</groupId>
314                         <artifactId>jest</artifactId>
315                         <version>2.0.4</version>
316                         <exclusions>
317                                 <exclusion>
318                                         <groupId>commons-logging</groupId>
319                                         <artifactId>commons-logging</artifactId>
320                                 </exclusion>
321                         </exclusions>
322                 </dependency>
323                 <dependency>
324                         <groupId>args4j</groupId>
325                         <artifactId>args4j</artifactId>
326                         <version>2.32</version>
327                 </dependency>
328                 <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
329                 <dependency>
330                         <groupId>org.apache.tomcat</groupId>
331                         <artifactId>tomcat-dbcp</artifactId>
332                         <version>8.5.9</version>
333                 </dependency>
334                 <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito -->
335                 <dependency>
336                 <groupId>org.powermock</groupId>
337                 <artifactId>powermock-api-mockito</artifactId>
338                 <version>1.7.3</version>
339                 <scope>test</scope>
340                 </dependency>
341                 <dependency>
342             <groupId>org.powermock</groupId>
343             <artifactId>powermock-module-junit4</artifactId>
344             <version>1.7.3</version>
345             <scope>test</scope>
346         </dependency>
347         </dependencies>
348         <properties>
349                 <springframework.version>4.3.3.RELEASE</springframework.version>
350                 <hibernate.version>4.3.10.Final</hibernate.version>
351                 <projectversion>2.0.2</projectversion>
352         </properties>
353 </project>