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