Upgrade to latest elasticsearch
[policy/engine.git] / POLICY-SDK-APP / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19   -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22         <modelVersion>4.0.0</modelVersion>
23         <parent>
24                 <groupId>org.onap.policy.engine</groupId>
25                 <artifactId>PolicyEngineSuite</artifactId>
26                 <version>1.2.0-SNAPSHOT</version>
27         </parent>
28         <artifactId>POLICY-SDK-APP</artifactId>
29         <packaging>war</packaging>
30         <build>
31                 <plugins>
32                         <plugin>
33                                 <artifactId>maven-war-plugin</artifactId>
34                                 <version>2.1</version>
35                                 <configuration>
36                                         <attachClasses>true</attachClasses>
37                                         <!-- <warSourceDirectory>WebContent</warSourceDirectory> -->
38                                         <failOnMissingWebXml>false</failOnMissingWebXml>
39                                 </configuration>
40                         </plugin>
41                         <plugin>
42                                 <artifactId>maven-compiler-plugin</artifactId>
43                                 <version>3.2</version>
44                                 <configuration>
45                                         <source>1.8</source>
46                                         <target>1.8</target>
47                                 </configuration>
48                         </plugin>
49                         <plugin>
50                                 <groupId>org.apache.maven.plugins</groupId>
51                                 <artifactId>maven-surefire-plugin</artifactId>
52                                 <configuration>
53                                         <skipTests>${skiptests}</skipTests>
54                                         <includes>
55                                                 <include>**/Test*.java</include>
56                                                 <include>**/*Test.java</include>
57                                                 <include>**/*TestCase.java</include>
58                                         </includes>
59                                         <additionalClasspathElements>
60                                                 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
61                                         </additionalClasspathElements>
62                                         <systemPropertyVariables>
63                                                 <container.classpath>classpath:</container.classpath>
64                                         </systemPropertyVariables>
65                                 </configuration>
66                         </plugin>
67                 </plugins>
68         </build>
69         <properties>
70                 <encoding>UTF-8</encoding>
71                 <epsdk.version>2.1.0</epsdk.version>
72                 <springframework.version>4.2.0.RELEASE</springframework.version>
73                 <hibernate.version>4.3.11.Final</hibernate.version>
74                 <skipassembly>true</skipassembly>
75                 <skiptests>false</skiptests>
76             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/app/policyApp/CSS/**/*,src/main/webapp/app/policyApp/libs/**/*</sonar.exclusions>               
77         </properties>
78         <dependencies>
79                 <dependency>
80                         <groupId>com.h2database</groupId>
81                         <artifactId>h2</artifactId>
82                         <scope>test</scope>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.onap.portal.sdk</groupId>
86                         <artifactId>epsdk-core</artifactId>
87                         <version>${epsdk.version}</version>
88                         <exclusions>
89                                 <exclusion>
90                                         <groupId>mysql</groupId>
91                                 <artifactId>mysql-connector-java</artifactId>
92                                 </exclusion>
93                         </exclusions>
94                 </dependency>
95         <!-- Spring -->
96                 <dependency>
97                         <groupId>org.springframework</groupId>
98                         <artifactId>spring-core</artifactId>
99                         <version>${springframework.version}</version>
100                         <exclusions>
101                                 <exclusion>
102                                         <groupId>commons-logging</groupId>
103                                         <artifactId>commons-logging</artifactId>
104                                 </exclusion>
105                         </exclusions>
106                 </dependency>
107                 <dependency>
108                         <groupId>org.springframework</groupId>
109                         <artifactId>spring-test</artifactId>
110                         <version>${springframework.version}</version>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.springframework</groupId>
114                         <artifactId>spring-web</artifactId>
115                         <version>${springframework.version}</version>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.springframework</groupId>
119                         <artifactId>spring-webmvc</artifactId>
120                         <version>${springframework.version}</version>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.springframework</groupId>
124                         <artifactId>spring-tx</artifactId>
125                         <version>${springframework.version}</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>org.springframework</groupId>
129                         <artifactId>spring-context-support</artifactId>
130                         <version>${springframework.version}</version>
131                 </dependency>
132                 <!-- Hibernate -->
133                 <dependency>
134                         <groupId>org.hibernate</groupId>
135                         <artifactId>hibernate-core</artifactId>
136                         <version>${hibernate.version}</version>
137                 </dependency>
138                 <dependency>
139                         <groupId>org.hibernate</groupId>
140                         <artifactId>hibernate-validator</artifactId>
141                         <version>5.1.3.Final</version>
142                 </dependency>
143                 <!-- Javax Mail -->
144                 <dependency>
145                         <groupId>javax.mail</groupId>
146                         <artifactId>mail</artifactId>
147                         <version>1.4.7</version>
148                 </dependency>
149                         <!-- Mapper -->
150                 <dependency>
151                         <groupId>com.fasterxml.jackson.core</groupId>
152                         <artifactId>jackson-annotations</artifactId>
153                         <version>${jackson.version}</version>
154                 </dependency>
155                 <dependency>
156                         <groupId>com.fasterxml.jackson.core</groupId>
157                         <artifactId>jackson-core</artifactId>
158                         <version>${jackson.version}</version>
159                 </dependency>
160                 <dependency>
161                         <groupId>com.fasterxml.jackson.core</groupId>
162                         <artifactId>jackson-databind</artifactId>
163                         <version>${jackson.version}</version>
164                 </dependency>
165                 <dependency>
166                         <groupId>com.fasterxml.jackson.module</groupId>
167                         <artifactId>jackson-module-jaxb-annotations</artifactId>
168                         <version>${jackson.version}</version>
169                 </dependency>
170                 <dependency>
171                         <groupId>com.fasterxml.jackson.module</groupId>
172                         <artifactId>jackson-module-jsonSchema</artifactId>
173                         <version>${jackson.version}</version>
174                 </dependency>
175                 <dependency>
176                         <groupId>com.fasterxml.jackson.dataformat</groupId>
177                         <artifactId>jackson-dataformat-xml</artifactId>
178                         <version>${jackson.version}</version>
179                 </dependency>
180                 <!-- Elastic Search -->
181                 <dependency>
182                         <groupId>org.elasticsearch</groupId>
183                         <artifactId>elasticsearch</artifactId>
184                         <version>6.2.2</version>
185                 </dependency>
186                 <dependency>
187                         <groupId>org.json</groupId>
188                         <artifactId>json</artifactId>
189                         <version>20160212</version>
190                 </dependency>
191                 <dependency>
192                         <groupId>io.searchbox</groupId>
193                         <artifactId>jest</artifactId>
194                         <version>2.0.0</version>
195                         <exclusions>
196                                 <exclusion>
197                                         <groupId>commons-logging</groupId>
198                                         <artifactId>commons-logging</artifactId>
199                                 </exclusion>
200                         </exclusions>
201                 </dependency>
202                 <dependency>
203                         <groupId>org.onap.policy.engine</groupId>
204                         <artifactId>ONAP-PDP</artifactId>
205                         <version>${project.version}</version>
206                         <exclusions>
207                                 <exclusion>
208                                         <groupId>commons-logging</groupId>
209                                         <artifactId>commons-logging</artifactId>
210                                 </exclusion>
211                                 <exclusion>
212                                         <groupId>org.apache.httpcomponents</groupId>
213                                         <artifactId>httpcore</artifactId>
214                                 </exclusion>
215                                 <exclusion>
216                                         <groupId>com.att.aft</groupId>
217                                 <artifactId>dme2</artifactId>
218                                 </exclusion>
219                         </exclusions>
220                 </dependency>
221                 <dependency>
222                         <groupId>commons-fileupload</groupId>
223                         <artifactId>commons-fileupload</artifactId>
224                         <version>${commons.fileupload.version}</version>
225                 </dependency>
226                 <dependency>
227                         <groupId>org.apache.commons</groupId>
228                         <artifactId>commons-compress</artifactId>
229                         <version>1.8</version>
230                 </dependency>
231                 <dependency>
232                         <groupId>args4j</groupId>
233                         <artifactId>args4j</artifactId>
234                         <version>2.32</version>
235                 </dependency>
236                 <dependency>
237                 <groupId>org.apache.poi</groupId>
238                 <artifactId>poi</artifactId>
239                 <version>3.15</version>
240                 </dependency>
241                 <dependency>
242                         <groupId>org.apache.poi</groupId>
243                         <artifactId>poi-ooxml</artifactId>
244                         <version>3.15</version>
245                 </dependency>
246                 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
247                 <dependency>
248                     <groupId>com.esotericsoftware.yamlbeans</groupId>
249                     <artifactId>yamlbeans</artifactId>
250                     <version>1.08</version>
251                 </dependency>           
252                 <!-- https://mvnrepository.com/artifact/org.easymock/easymock -->
253                 <dependency>
254                     <groupId>org.easymock</groupId>
255                     <artifactId>easymock</artifactId>
256                     <version>3.1</version>
257                 </dependency>   
258                 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
259                 <dependency>
260                     <groupId>org.yaml</groupId>
261                     <artifactId>snakeyaml</artifactId>
262                     <version>1.16</version>
263                 </dependency>
264                 <dependency>
265                         <groupId>org.apache.tomcat</groupId>
266                         <artifactId>tomcat-jdbc</artifactId>
267                         <version>8.0.24</version>
268                 </dependency>
269                 <dependency>
270                         <groupId>org.apache.tomcat</groupId>
271                         <artifactId>tomcat-dbcp</artifactId>
272                         <version>8.5.9</version>
273                 </dependency>
274         </dependencies>
275 </project>