Policy 1707 commit to LF
[policy/engine.git] / ECOMP-PAP-REST / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ECOMP Policy Engine
5   ================================================================================
6   Copyright (C) 2017 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>ECOMP-PAP-REST</artifactId>
27         <description>ECOMP-PAP-REST</description>
28         <packaging>war</packaging>
29         <parent>
30                 <groupId>org.openecomp.policy.engine</groupId>
31                 <artifactId>PolicyEngineSuite</artifactId>
32                 <version>1.1.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.openecomp.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                         </exclusions>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.apache.commons</groupId>
82                         <artifactId>commons-lang3</artifactId>
83                         <version>3.4</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.openecomp.policy.engine</groupId>
87                         <artifactId>ECOMP-PDP</artifactId>
88                         <version>${project.version}</version>
89                         <exclusions>
90                                 <exclusion>
91                                         <groupId>org.json</groupId>
92                                         <artifactId>json</artifactId>
93                                 </exclusion>
94                         </exclusions>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.openecomp.policy.common</groupId>
98                         <artifactId>ECOMP-Logging</artifactId>
99                         <version>${common-modules.version}</version>
100                 </dependency>
101                 <dependency>
102                         <groupId>javax.servlet</groupId>
103                         <artifactId>javax.servlet-api</artifactId>
104                         <version>3.1.0</version>
105                 </dependency>
106                 <dependency>
107                         <groupId>commons-logging</groupId>
108                         <artifactId>commons-logging</artifactId>
109                         <version>1.1.3</version>
110                         <exclusions>
111                                 <exclusion>
112                                         <groupId>javax.servlet</groupId>
113                                         <artifactId>servlet-api</artifactId>
114                                 </exclusion>
115                         </exclusions>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.apache.commons</groupId>
119                         <artifactId>commons-compress</artifactId>
120                         <version>1.8</version>
121                 </dependency>
122                 <dependency>
123                         <groupId>commons-fileupload</groupId>
124                         <artifactId>commons-fileupload</artifactId>
125                         <version>1.3.1</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>log4j</groupId>
129                         <artifactId>apache-log4j-extras</artifactId>
130                         <version>1.2.17</version>
131                 </dependency>
132                 <dependency>
133                         <groupId>commons-io</groupId>
134                         <artifactId>commons-io</artifactId>
135                         <version>2.4</version>
136                 </dependency>
137                 <dependency>
138                         <groupId>io.netty</groupId>
139                         <artifactId>netty</artifactId>
140                         <version>3.5.0.Final</version>
141                 </dependency>
142                 <dependency>
143                         <groupId>com.google.guava</groupId>
144                         <artifactId>guava</artifactId>
145                         <version>14.0.1</version>
146                 </dependency>
147                 <dependency>
148                         <groupId>org.eclipse.jgit</groupId>
149                         <artifactId>org.eclipse.jgit</artifactId>
150                         <version>3.2.0.201312181205-r</version>
151                 </dependency>
152                 <dependency>
153                         <groupId>junit</groupId>
154                         <artifactId>junit</artifactId>
155                         <version>4.11</version>
156                         <scope>test</scope>
157                 </dependency>
158                 <dependency>
159                         <groupId>org.apache.tomcat</groupId>
160                         <artifactId>tomcat-jdbc</artifactId>
161                         <version>8.0.24</version>
162                 </dependency>
163                 <dependency>
164                         <groupId>com.h2database</groupId>
165                         <artifactId>h2</artifactId>
166                         <version>[1.4.186,)</version>
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                         <version>2.1.0</version>
177                 </dependency>
178                 <dependency>
179                         <groupId>org.eclipse.persistence</groupId>
180                         <artifactId>eclipselink</artifactId>
181                         <version>2.6.0</version>
182                 </dependency>
183
184                 <dependency>
185                         <groupId>mysql</groupId>
186                         <artifactId>mysql-connector-java</artifactId>
187                         <version>5.1.30</version>
188                 </dependency>
189                 <dependency>
190                         <groupId>org.springframework</groupId>
191                         <artifactId>spring-mock</artifactId>
192                         <version>2.0.8</version>
193                 </dependency>
194                 <dependency>
195                         <groupId>com.mockrunner</groupId>
196                         <artifactId>mockrunner</artifactId>
197                         <version>0.3.1</version>
198                 </dependency>
199                 <!-- Spring -->
200                 <dependency>
201                         <groupId>org.springframework</groupId>
202                         <artifactId>spring-core</artifactId>
203                         <version>${springframework.version}</version>
204                 </dependency>
205                 <dependency>
206                         <groupId>org.springframework</groupId>
207                         <artifactId>spring-web</artifactId>
208                         <version>${springframework.version}</version>
209                 </dependency>
210                 <dependency>
211                         <groupId>org.springframework</groupId>
212                         <artifactId>spring-webmvc</artifactId>
213                         <version>${springframework.version}</version>
214                 </dependency>
215                 <dependency>
216                         <groupId>org.springframework</groupId>
217                         <artifactId>spring-tx</artifactId>
218                         <version>${springframework.version}</version>
219                 </dependency>
220                 <dependency>
221                         <groupId>org.springframework</groupId>
222                         <artifactId>spring-context-support</artifactId>
223                         <version>${springframework.version}</version>
224                 </dependency>
225                 <dependency>
226                         <groupId>org.springframework</groupId>
227                         <artifactId>spring-orm</artifactId>
228                         <version>${springframework.version}</version>
229                 </dependency>
230                 <!-- Hibernate -->
231                 <dependency>
232                         <groupId>org.hibernate</groupId>
233                         <artifactId>hibernate-core</artifactId>
234                         <version>${hibernate.version}</version>
235                 </dependency>
236                 <dependency>
237                         <groupId>org.hibernate</groupId>
238                         <artifactId>hibernate-validator</artifactId>
239                         <version>5.1.3.Final</version>
240                 </dependency>
241                 <!-- https://mvnrepository.com/artifact/org.json/json -->
242                 <dependency>
243                         <groupId>org.json</groupId>
244                         <artifactId>json</artifactId>
245                         <version>20160810</version>
246                 </dependency>
247                 <dependency>
248                         <groupId>com.fasterxml.jackson.core</groupId>
249                         <artifactId>jackson-annotations</artifactId>
250                         <version>2.6.3</version>
251                 </dependency>
252                 <dependency>
253                         <groupId>com.fasterxml.jackson.core</groupId>
254                         <artifactId>jackson-core</artifactId>
255                         <version>2.6.3</version>
256                 </dependency>
257                 <dependency>
258                         <groupId>com.fasterxml.jackson.core</groupId>
259                         <artifactId>jackson-databind</artifactId>
260                         <version>2.6.3</version>
261                 </dependency>
262                 <dependency>
263                         <groupId>com.fasterxml.jackson.module</groupId>
264                         <artifactId>jackson-module-jaxb-annotations</artifactId>
265                         <version>${jackson.version}</version>
266                 </dependency>
267                 <dependency>
268                         <groupId>com.fasterxml.jackson.module</groupId>
269                         <artifactId>jackson-module-jsonSchema</artifactId>
270                         <version>${jackson.version}</version>
271                 </dependency>
272                 <dependency>
273                         <groupId>com.fasterxml.jackson.dataformat</groupId>
274                         <artifactId>jackson-dataformat-xml</artifactId>
275                         <version>${jackson.version}</version>
276                 </dependency>
277                 <dependency>
278                 <groupId>org.elasticsearch</groupId>
279                 <artifactId>elasticsearch</artifactId>
280                 <version>5.1.2</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>io.searchbox</groupId>
284                         <artifactId>jest</artifactId>
285                         <version>2.0.4</version>
286                         <exclusions>
287                                 <exclusion>
288                                         <groupId>commons-logging</groupId>
289                                         <artifactId>commons-logging</artifactId>
290                                 </exclusion>
291                         </exclusions>
292                 </dependency>
293                 <dependency>
294                         <groupId>args4j</groupId>
295                         <artifactId>args4j</artifactId>
296                         <version>2.32</version>
297                 </dependency>
298                 <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp -->
299                 <dependency>
300                         <groupId>org.apache.tomcat</groupId>
301                         <artifactId>tomcat-dbcp</artifactId>
302                         <version>8.5.9</version>
303                 </dependency>
304
305         </dependencies>
306         <properties>
307                 <springframework.version>4.2.0.RELEASE</springframework.version>
308                 <hibernate.version>4.3.10.Final</hibernate.version>
309                 <projectversion>2.0.2</projectversion>
310                 <jackson.version>2.6.0</jackson.version>
311         </properties>
312 </project>