Merge "Fix Fortify Scan Issue:"
[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                         <version>[1.4.186,)</version>
194                 </dependency>
195                 <dependency>
196                         <groupId>com.github.fge</groupId>
197                         <artifactId>json-patch</artifactId>
198                         <version>1.9</version>
199                 </dependency>
200                 <dependency>
201                         <groupId>org.eclipse.persistence</groupId>
202                         <artifactId>javax.persistence</artifactId>
203                         <version>2.1.0</version>
204                 </dependency>
205                 <dependency>
206                         <groupId>org.eclipse.persistence</groupId>
207                         <artifactId>eclipselink</artifactId>
208                         <version>2.6.0</version>
209                 </dependency>
210                 <dependency>
211             <groupId>org.mariadb.jdbc</groupId>
212             <artifactId>mariadb-java-client</artifactId>
213             <version>2.1.1</version>
214         </dependency>
215                 <dependency>
216                         <groupId>org.springframework</groupId>
217                         <artifactId>spring-mock</artifactId>
218                         <version>2.0.8</version>
219                 </dependency>
220                 <dependency>
221                         <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
222                         <artifactId>policy-yaml</artifactId>
223                         <version>${project.version}</version>
224                 </dependency>
225                 <dependency>
226                         <groupId>com.mockrunner</groupId>
227                         <artifactId>mockrunner</artifactId>
228                         <version>0.3.1</version>
229                 </dependency>
230                 <!-- Spring -->
231                 <dependency>
232                         <groupId>org.springframework</groupId>
233                         <artifactId>spring-core</artifactId>
234                         <version>${springframework.version}</version>
235                 </dependency>
236                 <dependency>
237                         <groupId>org.springframework</groupId>
238                         <artifactId>spring-web</artifactId>
239                         <version>${springframework.version}</version>
240                 </dependency>
241                 <dependency>
242                         <groupId>org.springframework</groupId>
243                         <artifactId>spring-webmvc</artifactId>
244                         <version>${springframework.version}</version>
245                 </dependency>
246                 <dependency>
247                         <groupId>org.springframework</groupId>
248                         <artifactId>spring-tx</artifactId>
249                         <version>${springframework.version}</version>
250                 </dependency>
251                 <dependency>
252                         <groupId>org.springframework</groupId>
253                         <artifactId>spring-context-support</artifactId>
254                         <version>${springframework.version}</version>
255                 </dependency>
256                 <dependency>
257                         <groupId>org.springframework</groupId>
258                         <artifactId>spring-orm</artifactId>
259                         <version>${springframework.version}</version>
260                 </dependency>
261                 <!-- Hibernate -->
262                 <dependency>
263                         <groupId>org.hibernate</groupId>
264                         <artifactId>hibernate-core</artifactId>
265                         <version>${hibernate.version}</version>
266                 </dependency>
267                 <dependency>
268                         <groupId>org.hibernate</groupId>
269                         <artifactId>hibernate-validator</artifactId>
270                         <version>5.1.3.Final</version>
271                 </dependency>
272                 <!-- https://mvnrepository.com/artifact/org.json/json -->
273                 <dependency>
274                         <groupId>org.json</groupId>
275                         <artifactId>json</artifactId>
276                         <version>20160810</version>
277                 </dependency>
278                 <dependency>
279                         <groupId>com.fasterxml.jackson.core</groupId>
280                         <artifactId>jackson-annotations</artifactId>
281                         <version>${jackson.version}</version>
282                 </dependency>
283                 <dependency>
284                         <groupId>com.fasterxml.jackson.core</groupId>
285                         <artifactId>jackson-core</artifactId>
286                         <version>${jackson.version}</version>
287                 </dependency>
288                 <dependency>
289                         <groupId>com.fasterxml.jackson.core</groupId>
290                         <artifactId>jackson-databind</artifactId>
291                         <version>${jackson.version}</version>
292                 </dependency>
293                 <dependency>
294                         <groupId>com.fasterxml.jackson.module</groupId>
295                         <artifactId>jackson-module-jaxb-annotations</artifactId>
296                         <version>${jackson.version}</version>
297                 </dependency>
298                 <dependency>
299                         <groupId>com.fasterxml.jackson.module</groupId>
300                         <artifactId>jackson-module-jsonSchema</artifactId>
301                         <version>${jackson.version}</version>
302                 </dependency>
303                 <dependency>
304                         <groupId>com.fasterxml.jackson.dataformat</groupId>
305                         <artifactId>jackson-dataformat-xml</artifactId>
306                         <version>${jackson.version}</version>
307                 </dependency>
308                 <dependency>
309                         <groupId>org.elasticsearch</groupId>
310                         <artifactId>elasticsearch</artifactId>
311                         <version>5.1.2</version>
312                 </dependency>
313                 <dependency>
314                         <groupId>io.searchbox</groupId>
315                         <artifactId>jest</artifactId>
316                         <version>2.0.4</version>
317                         <exclusions>
318                                 <exclusion>
319                                         <groupId>commons-logging</groupId>
320                                         <artifactId>commons-logging</artifactId>
321                                 </exclusion>
322                         </exclusions>
323                 </dependency>
324                 <dependency>
325                         <groupId>args4j</groupId>
326                         <artifactId>args4j</artifactId>
327                         <version>2.32</version>
328                 </dependency>
329                 <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
330                 <dependency>
331                         <groupId>org.apache.tomcat</groupId>
332                         <artifactId>tomcat-dbcp</artifactId>
333                         <version>8.5.9</version>
334                 </dependency>
335                 <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito -->
336                 <dependency>
337                 <groupId>org.powermock</groupId>
338                 <artifactId>powermock-api-mockito</artifactId>
339                 <version>1.7.3</version>
340                 <scope>test</scope>
341                 </dependency>
342                 <dependency>
343             <groupId>org.powermock</groupId>
344             <artifactId>powermock-module-junit4</artifactId>
345             <version>1.7.3</version>
346             <scope>test</scope>
347         </dependency>
348         </dependencies>
349         <properties>
350                 <springframework.version>4.3.3.RELEASE</springframework.version>
351                 <hibernate.version>4.3.10.Final</hibernate.version>
352                 <projectversion>2.0.2</projectversion>
353         </properties>
354 </project>