Upgrade hibernator and netty
[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.1-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                                 <exclusion>
94                                         <groupId>com.thoughtworks.xstream</groupId>
95                                         <artifactId>xstream</artifactId>
96                                 </exclusion>
97                         </exclusions>
98                 </dependency>
99         <!-- Spring -->
100                 <dependency>
101                         <groupId>org.springframework</groupId>
102                         <artifactId>spring-core</artifactId>
103                         <version>${springframework.version}</version>
104                         <exclusions>
105                                 <exclusion>
106                                         <groupId>commons-logging</groupId>
107                                         <artifactId>commons-logging</artifactId>
108                                 </exclusion>
109                         </exclusions>
110                 </dependency>
111                 <dependency>
112                         <groupId>org.springframework</groupId>
113                         <artifactId>spring-test</artifactId>
114                         <version>${springframework.version}</version>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.springframework</groupId>
118                         <artifactId>spring-web</artifactId>
119                         <version>${springframework.version}</version>
120                 </dependency>
121                 <dependency>
122                         <groupId>org.springframework</groupId>
123                         <artifactId>spring-webmvc</artifactId>
124                         <version>${springframework.version}</version>
125                 </dependency>
126                 <dependency>
127                         <groupId>org.springframework</groupId>
128                         <artifactId>spring-tx</artifactId>
129                         <version>${springframework.version}</version>
130                 </dependency>
131                 <dependency>
132                         <groupId>org.springframework</groupId>
133                         <artifactId>spring-context-support</artifactId>
134                         <version>${springframework.version}</version>
135                 </dependency>
136                 <!-- Hibernate -->
137                 <dependency>
138                         <groupId>org.hibernate</groupId>
139                         <artifactId>hibernate-core</artifactId>
140                         <version>${hibernate.version}</version>
141                 </dependency>
142                 <dependency>
143                         <groupId>org.hibernate</groupId>
144                         <artifactId>hibernate-validator</artifactId>
145                         <version>5.4.2.Final</version>
146                 </dependency>
147                 <!-- Javax Mail -->
148                 <dependency>
149                         <groupId>javax.mail</groupId>
150                         <artifactId>mail</artifactId>
151                         <version>1.4.7</version>
152                 </dependency>
153                         <!-- Mapper -->
154                 <dependency>
155                         <groupId>com.fasterxml.jackson.core</groupId>
156                         <artifactId>jackson-annotations</artifactId>
157                         <version>${jackson.version}</version>
158                 </dependency>
159                 <dependency>
160                         <groupId>com.fasterxml.jackson.core</groupId>
161                         <artifactId>jackson-core</artifactId>
162                         <version>${jackson.version}</version>
163                 </dependency>
164                 <dependency>
165                         <groupId>com.fasterxml.jackson.module</groupId>
166                         <artifactId>jackson-module-jaxb-annotations</artifactId>
167                         <version>${jackson.version}</version>
168                 </dependency>
169                 <dependency>
170                         <groupId>com.fasterxml.jackson.module</groupId>
171                         <artifactId>jackson-module-jsonSchema</artifactId>
172                         <version>${jackson.version}</version>
173                 </dependency>
174                 <dependency>
175                         <groupId>com.fasterxml.jackson.dataformat</groupId>
176                         <artifactId>jackson-dataformat-xml</artifactId>
177                         <version>${jackson.version}</version>
178                 </dependency>
179                 <!-- Elastic Search -->
180                 <dependency>
181                         <groupId>org.elasticsearch</groupId>
182                         <artifactId>elasticsearch</artifactId>
183                         <version>6.2.2</version>
184                 </dependency>
185                 <dependency>
186                         <groupId>org.json</groupId>
187                         <artifactId>json</artifactId>
188                         <version>20160212</version>
189                 </dependency>
190                 <dependency>
191                         <groupId>io.searchbox</groupId>
192                         <artifactId>jest</artifactId>
193                         <version>2.0.0</version>
194                         <exclusions>
195                                 <exclusion>
196                                         <groupId>commons-logging</groupId>
197                                         <artifactId>commons-logging</artifactId>
198                                 </exclusion>
199                                 <exclusion>
200                                         <groupId>org.apache.httpcomponents</groupId>
201                                         <artifactId>httpclient</artifactId>
202                                 </exclusion>
203                         </exclusions>
204                 </dependency>
205                 <dependency>
206                         <groupId>org.onap.policy.engine</groupId>
207                         <artifactId>ONAP-PDP</artifactId>
208                         <version>${project.version}</version>
209                         <exclusions>
210                                 <exclusion>
211                                         <groupId>commons-logging</groupId>
212                                         <artifactId>commons-logging</artifactId>
213                                 </exclusion>
214                                 <exclusion>
215                                         <groupId>org.apache.httpcomponents</groupId>
216                                         <artifactId>httpcore</artifactId>
217                                 </exclusion>
218                                 <exclusion>
219                                         <groupId>com.att.aft</groupId>
220                                 <artifactId>dme2</artifactId>
221                                 </exclusion>
222                         </exclusions>
223                 </dependency>
224                 <dependency>
225                         <groupId>commons-fileupload</groupId>
226                         <artifactId>commons-fileupload</artifactId>
227                         <version>${commons.fileupload.version}</version>
228                 </dependency>
229                 <dependency>
230                         <groupId>org.apache.commons</groupId>
231                         <artifactId>commons-compress</artifactId>
232                         <version>1.8</version>
233                 </dependency>
234                 <dependency>
235                         <groupId>args4j</groupId>
236                         <artifactId>args4j</artifactId>
237                         <version>2.32</version>
238                 </dependency>
239                 <dependency>
240                 <groupId>org.apache.poi</groupId>
241                 <artifactId>poi</artifactId>
242                 <version>3.15</version>
243                 </dependency>
244                 <dependency>
245                         <groupId>org.apache.poi</groupId>
246                         <artifactId>poi-ooxml</artifactId>
247                         <version>3.15</version>
248                 </dependency>
249                 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
250                 <dependency>
251                     <groupId>com.esotericsoftware.yamlbeans</groupId>
252                     <artifactId>yamlbeans</artifactId>
253                     <version>1.08</version>
254                 </dependency>           
255                 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
256                 <dependency>
257                     <groupId>org.yaml</groupId>
258                     <artifactId>snakeyaml</artifactId>
259                     <version>1.16</version>
260                 </dependency>
261                 <dependency>
262                         <groupId>org.apache.tomcat</groupId>
263                         <artifactId>tomcat-jdbc</artifactId>
264                         <version>8.0.24</version>
265                 </dependency>
266                 <dependency>
267                         <groupId>org.apache.tomcat</groupId>
268                         <artifactId>tomcat-dbcp</artifactId>
269                         <version>8.5.9</version>
270                 </dependency>
271         </dependencies>
272 </project>