blob: 1160a8f252c7e1f92349a0525e9933bf192f4ee8 [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>
liamfallon56a23de2018-06-05 17:03:32 +010026 <version>1.3.0-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>
Michael Mokry3ee69f12018-07-11 16:13:13 -050071 <epsdk.version>2.3.1</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>
Jim Hahnc162c372018-06-08 15:48:52 -040074 <logback.version>1.2.3</logback.version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040075 <skipassembly>true</skipassembly>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040076 <skiptests>false</skiptests>
Pamela Dragosh71d31152017-09-20 13:37:03 -040077 <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 -040078 </properties>
79 <dependencies>
80 <dependency>
Jim Hahnc162c372018-06-08 15:48:52 -040081 <groupId>ch.qos.logback</groupId>
82 <artifactId>logback-classic</artifactId>
83 <version>${logback.version}</version>
84 </dependency>
85 <dependency>
Pamela Dragoshb2c21862018-02-20 13:36:48 -050086 <groupId>com.h2database</groupId>
87 <artifactId>h2</artifactId>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
rb714733f0e2b2017-10-19 15:15:48 -040091 <groupId>org.onap.portal.sdk</groupId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040092 <artifactId>epsdk-core</artifactId>
93 <version>${epsdk.version}</version>
rb714733f0e2b2017-10-19 15:15:48 -040094 <exclusions>
95 <exclusion>
96 <groupId>mysql</groupId>
97 <artifactId>mysql-connector-java</artifactId>
98 </exclusion>
Pamela Dragosha86b80a2018-03-28 16:30:42 -070099 <exclusion>
100 <groupId>com.thoughtworks.xstream</groupId>
101 <artifactId>xstream</artifactId>
102 </exclusion>
rb714733f0e2b2017-10-19 15:15:48 -0400103 </exclusions>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400104 </dependency>
105 <!-- Spring -->
106 <dependency>
107 <groupId>org.springframework</groupId>
108 <artifactId>spring-core</artifactId>
109 <version>${springframework.version}</version>
110 <exclusions>
111 <exclusion>
112 <groupId>commons-logging</groupId>
113 <artifactId>commons-logging</artifactId>
114 </exclusion>
115 </exclusions>
116 </dependency>
117 <dependency>
118 <groupId>org.springframework</groupId>
119 <artifactId>spring-test</artifactId>
120 <version>${springframework.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>org.springframework</groupId>
124 <artifactId>spring-web</artifactId>
125 <version>${springframework.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>org.springframework</groupId>
129 <artifactId>spring-webmvc</artifactId>
130 <version>${springframework.version}</version>
131 </dependency>
132 <dependency>
133 <groupId>org.springframework</groupId>
134 <artifactId>spring-tx</artifactId>
135 <version>${springframework.version}</version>
136 </dependency>
137 <dependency>
138 <groupId>org.springframework</groupId>
139 <artifactId>spring-context-support</artifactId>
140 <version>${springframework.version}</version>
141 </dependency>
142 <!-- Hibernate -->
143 <dependency>
144 <groupId>org.hibernate</groupId>
145 <artifactId>hibernate-core</artifactId>
146 <version>${hibernate.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>org.hibernate</groupId>
150 <artifactId>hibernate-validator</artifactId>
Pamela Dragosh28170792018-04-17 10:30:19 -0400151 <version>5.4.2.Final</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400152 </dependency>
153 <!-- Javax Mail -->
154 <dependency>
155 <groupId>javax.mail</groupId>
156 <artifactId>mail</artifactId>
157 <version>1.4.7</version>
158 </dependency>
159 <!-- Mapper -->
160 <dependency>
161 <groupId>com.fasterxml.jackson.core</groupId>
162 <artifactId>jackson-annotations</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500163 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400164 </dependency>
165 <dependency>
166 <groupId>com.fasterxml.jackson.core</groupId>
167 <artifactId>jackson-core</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500168 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400169 </dependency>
170 <dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400171 <groupId>com.fasterxml.jackson.module</groupId>
172 <artifactId>jackson-module-jaxb-annotations</artifactId>
173 <version>${jackson.version}</version>
174 </dependency>
175 <dependency>
176 <groupId>com.fasterxml.jackson.module</groupId>
177 <artifactId>jackson-module-jsonSchema</artifactId>
178 <version>${jackson.version}</version>
179 </dependency>
180 <dependency>
181 <groupId>com.fasterxml.jackson.dataformat</groupId>
182 <artifactId>jackson-dataformat-xml</artifactId>
183 <version>${jackson.version}</version>
184 </dependency>
rb714795524c82018-07-18 12:50:06 -0400185 <dependency>
186 <groupId>com.google.code.gson</groupId>
187 <artifactId>gson</artifactId>
188 <version>2.8.0</version>
189 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400190 <!-- Elastic Search -->
191 <dependency>
192 <groupId>org.elasticsearch</groupId>
193 <artifactId>elasticsearch</artifactId>
Pamela Dragosh78232bc2018-03-13 14:50:14 -0400194 <version>6.2.2</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400195 </dependency>
196 <dependency>
197 <groupId>org.json</groupId>
198 <artifactId>json</artifactId>
199 <version>20160212</version>
200 </dependency>
201 <dependency>
202 <groupId>io.searchbox</groupId>
203 <artifactId>jest</artifactId>
204 <version>2.0.0</version>
205 <exclusions>
206 <exclusion>
207 <groupId>commons-logging</groupId>
208 <artifactId>commons-logging</artifactId>
209 </exclusion>
Pamela Dragosh24c3ac32018-03-14 15:12:26 -0400210 <exclusion>
211 <groupId>org.apache.httpcomponents</groupId>
212 <artifactId>httpclient</artifactId>
213 </exclusion>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400214 </exclusions>
215 </dependency>
216 <dependency>
Guo Ruijing073cc182017-07-31 08:47:35 +0000217 <groupId>org.onap.policy.engine</groupId>
218 <artifactId>ONAP-PDP</artifactId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400219 <version>${project.version}</version>
220 <exclusions>
221 <exclusion>
222 <groupId>commons-logging</groupId>
223 <artifactId>commons-logging</artifactId>
224 </exclusion>
225 <exclusion>
226 <groupId>org.apache.httpcomponents</groupId>
227 <artifactId>httpcore</artifactId>
228 </exclusion>
229 <exclusion>
230 <groupId>com.att.aft</groupId>
231 <artifactId>dme2</artifactId>
232 </exclusion>
233 </exclusions>
234 </dependency>
235 <dependency>
236 <groupId>commons-fileupload</groupId>
237 <artifactId>commons-fileupload</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500238 <version>${commons.fileupload.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400239 </dependency>
240 <dependency>
241 <groupId>org.apache.commons</groupId>
242 <artifactId>commons-compress</artifactId>
243 <version>1.8</version>
244 </dependency>
245 <dependency>
246 <groupId>args4j</groupId>
247 <artifactId>args4j</artifactId>
248 <version>2.32</version>
249 </dependency>
250 <dependency>
251 <groupId>org.apache.poi</groupId>
252 <artifactId>poi</artifactId>
Pamela Dragoshb082b9f2018-04-18 09:55:48 -0400253 <version>3.17</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400254 </dependency>
255 <dependency>
256 <groupId>org.apache.poi</groupId>
257 <artifactId>poi-ooxml</artifactId>
Pamela Dragoshb082b9f2018-04-18 09:55:48 -0400258 <version>3.17</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400259 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400260 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
261 <dependency>
262 <groupId>com.esotericsoftware.yamlbeans</groupId>
263 <artifactId>yamlbeans</artifactId>
264 <version>1.08</version>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -0400265 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400266 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
267 <dependency>
268 <groupId>org.yaml</groupId>
269 <artifactId>snakeyaml</artifactId>
270 <version>1.16</version>
271 </dependency>
Rodriguez, Cuauhtemoctzin (cr056n)59e3ddb2017-08-04 16:02:20 -0500272 <dependency>
273 <groupId>org.apache.tomcat</groupId>
274 <artifactId>tomcat-jdbc</artifactId>
275 <version>8.0.24</version>
276 </dependency>
277 <dependency>
278 <groupId>org.apache.tomcat</groupId>
279 <artifactId>tomcat-dbcp</artifactId>
280 <version>8.5.9</version>
281 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400282 </dependencies>
Guo Ruijing096a3c92017-07-14 09:34:39 +0000283</project>