blob: 91ebf7a9ca9b778f2c3c9b0dac39f9cd7315a6aa [file] [log] [blame]
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -05001<!--
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 -->
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040020<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>
Guo Ruijing073cc182017-07-31 08:47:35 +000024 <groupId>org.onap.policy.engine</groupId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040025 <artifactId>PolicyEngineSuite</artifactId>
Pamela Dragoshdca52202018-04-13 15:55:51 -040026 <version>1.2.1-SNAPSHOT</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040027 </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>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040049 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-surefire-plugin</artifactId>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040052 <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>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040067 </plugins>
68 </build>
69 <properties>
70 <encoding>UTF-8</encoding>
rb714790d00372018-02-21 13:24:04 -050071 <epsdk.version>2.1.0</epsdk.version>
rb71479a322232018-02-08 12:31:44 -050072 <springframework.version>4.2.0.RELEASE</springframework.version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040073 <hibernate.version>4.3.11.Final</hibernate.version>
74 <skipassembly>true</skipassembly>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040075 <skiptests>false</skiptests>
Pamela Dragosh71d31152017-09-20 13:37:03 -040076 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/app/policyApp/CSS/**/*,src/main/webapp/app/policyApp/libs/**/*</sonar.exclusions>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040077 </properties>
78 <dependencies>
79 <dependency>
Pamela Dragoshb2c21862018-02-20 13:36:48 -050080 <groupId>com.h2database</groupId>
81 <artifactId>h2</artifactId>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
rb714733f0e2b2017-10-19 15:15:48 -040085 <groupId>org.onap.portal.sdk</groupId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040086 <artifactId>epsdk-core</artifactId>
87 <version>${epsdk.version}</version>
rb714733f0e2b2017-10-19 15:15:48 -040088 <exclusions>
89 <exclusion>
90 <groupId>mysql</groupId>
91 <artifactId>mysql-connector-java</artifactId>
92 </exclusion>
Pamela Dragosha86b80a2018-03-28 16:30:42 -070093 <exclusion>
94 <groupId>com.thoughtworks.xstream</groupId>
95 <artifactId>xstream</artifactId>
96 </exclusion>
rb714733f0e2b2017-10-19 15:15:48 -040097 </exclusions>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040098 </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>
Pamela Dragosh28170792018-04-17 10:30:19 -0400145 <version>5.4.2.Final</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400146 </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>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500157 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400158 </dependency>
159 <dependency>
160 <groupId>com.fasterxml.jackson.core</groupId>
161 <artifactId>jackson-core</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500162 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400163 </dependency>
164 <dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400165 <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>
Pamela Dragosh78232bc2018-03-13 14:50:14 -0400183 <version>6.2.2</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400184 </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>
Pamela Dragosh24c3ac32018-03-14 15:12:26 -0400199 <exclusion>
200 <groupId>org.apache.httpcomponents</groupId>
201 <artifactId>httpclient</artifactId>
202 </exclusion>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400203 </exclusions>
204 </dependency>
205 <dependency>
Guo Ruijing073cc182017-07-31 08:47:35 +0000206 <groupId>org.onap.policy.engine</groupId>
207 <artifactId>ONAP-PDP</artifactId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400208 <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>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500227 <version>${commons.fileupload.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400228 </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>
Pamela Dragoshb082b9f2018-04-18 09:55:48 -0400242 <version>3.17</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400243 </dependency>
244 <dependency>
245 <groupId>org.apache.poi</groupId>
246 <artifactId>poi-ooxml</artifactId>
Pamela Dragoshb082b9f2018-04-18 09:55:48 -0400247 <version>3.17</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400248 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400249 <!-- 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>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -0400254 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400255 <!-- 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>
Rodriguez, Cuauhtemoctzin (cr056n)59e3ddb2017-08-04 16:02:20 -0500261 <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>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400271 </dependencies>
Guo Ruijing096a3c92017-07-14 09:34:39 +0000272</project>