blob: 6a98e0f6e76dc11f0a3b9e7e366a31e0c08d2c7e [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 -->
liamfallon4929b5e2018-10-31 17:28:58 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onap.policy.engine</groupId>
24 <artifactId>PolicyEngineSuite</artifactId>
Jim Hahn1c5d6cd2019-09-17 12:14:50 -040025 <version>1.6.0-SNAPSHOT</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040026 </parent>
27 <artifactId>POLICY-SDK-APP</artifactId>
28 <packaging>war</packaging>
29 <build>
30 <plugins>
31 <plugin>
32 <artifactId>maven-war-plugin</artifactId>
33 <configuration>
34 <attachClasses>true</attachClasses>
35 <!-- <warSourceDirectory>WebContent</warSourceDirectory> -->
36 <failOnMissingWebXml>false</failOnMissingWebXml>
37 </configuration>
38 </plugin>
39 <plugin>
40 <artifactId>maven-compiler-plugin</artifactId>
41 <configuration>
42 <source>1.8</source>
43 <target>1.8</target>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-surefire-plugin</artifactId>
49 <configuration>
50 <skipTests>${skiptests}</skipTests>
51 <includes>
52 <include>**/Test*.java</include>
53 <include>**/*Test.java</include>
54 <include>**/*TestCase.java</include>
55 </includes>
56 <additionalClasspathElements>
57 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
58 </additionalClasspathElements>
59 <systemPropertyVariables>
60 <container.classpath>classpath:</container.classpath>
61 </systemPropertyVariables>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66 <properties>
67 <encoding>UTF-8</encoding>
Pamela Dragoshb66330d2019-09-13 14:05:29 -040068 <epsdk.version>2.6.0</epsdk.version>
Michael Mokryd3a21892019-08-13 11:45:41 -050069 <springframework.version>4.3.24.RELEASE</springframework.version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040070 <hibernate.version>4.3.11.Final</hibernate.version>
71 <logback.version>1.2.3</logback.version>
72 <skipassembly>true</skipassembly>
73 <skiptests>false</skiptests>
Pamela Dragosh1b9d1072019-07-22 09:30:02 -040074 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/app/policyApp/CSS/**/*,src/main/webapp/app/policyApp/libs.bower_components/**/*</sonar.exclusions>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040075 </properties>
76 <dependencies>
77 <dependency>
78 <groupId>ch.qos.logback</groupId>
79 <artifactId>logback-classic</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>com.h2database</groupId>
83 <artifactId>h2</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onap.portal.sdk</groupId>
88 <artifactId>epsdk-core</artifactId>
89 <version>${epsdk.version}</version>
90 <exclusions>
91 <exclusion>
92 <groupId>mysql</groupId>
93 <artifactId>mysql-connector-java</artifactId>
94 </exclusion>
95 <exclusion>
96 <groupId>com.thoughtworks.xstream</groupId>
97 <artifactId>xstream</artifactId>
98 </exclusion>
Michael Mokry00bd1cd2018-10-04 15:50:05 -050099 <!-- Added exclusions to fix issue with duplicate jars of different versions -->
100 <exclusion>
101 <groupId>org.springframework</groupId>
102 <artifactId>spring-core</artifactId>
103 </exclusion>
104 <exclusion>
105 <groupId>org.springframework</groupId>
106 <artifactId>spring-web</artifactId>
107 </exclusion>
108 <exclusion>
109 <groupId>org.springframework</groupId>
110 <artifactId>spring-webmvc</artifactId>
111 </exclusion>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400112 </exclusions>
113 </dependency>
114 <!-- Spring -->
115 <dependency>
116 <groupId>org.springframework</groupId>
117 <artifactId>spring-core</artifactId>
118 <version>${springframework.version}</version>
119 <exclusions>
120 <exclusion>
121 <groupId>commons-logging</groupId>
122 <artifactId>commons-logging</artifactId>
123 </exclusion>
124 </exclusions>
125 </dependency>
126 <dependency>
127 <groupId>org.springframework</groupId>
128 <artifactId>spring-test</artifactId>
129 <version>${springframework.version}</version>
130 </dependency>
131 <dependency>
132 <groupId>org.springframework</groupId>
133 <artifactId>spring-web</artifactId>
134 <version>${springframework.version}</version>
135 </dependency>
136 <dependency>
137 <groupId>org.springframework</groupId>
138 <artifactId>spring-webmvc</artifactId>
139 <version>${springframework.version}</version>
140 </dependency>
141 <dependency>
142 <groupId>org.springframework</groupId>
143 <artifactId>spring-tx</artifactId>
144 <version>${springframework.version}</version>
145 </dependency>
146 <dependency>
147 <groupId>org.springframework</groupId>
148 <artifactId>spring-context-support</artifactId>
149 <version>${springframework.version}</version>
150 </dependency>
151 <!-- Hibernate -->
152 <dependency>
153 <groupId>org.hibernate</groupId>
154 <artifactId>hibernate-core</artifactId>
155 <version>${hibernate.version}</version>
156 </dependency>
157 <dependency>
158 <groupId>org.hibernate</groupId>
159 <artifactId>hibernate-validator</artifactId>
160 <version>5.4.2.Final</version>
161 </dependency>
162 <!-- Javax Mail -->
163 <dependency>
Pamela Dragosh767899b2018-09-20 07:58:32 -0400164 <groupId>com.sun.mail</groupId>
165 <artifactId>javax.mail</artifactId>
166 <version>1.6.2</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400167 </dependency>
168 <!-- Mapper -->
169 <dependency>
170 <groupId>com.fasterxml.jackson.core</groupId>
171 <artifactId>jackson-annotations</artifactId>
172 <version>${jackson.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>com.fasterxml.jackson.core</groupId>
176 <artifactId>jackson-core</artifactId>
177 <version>${jackson.version}</version>
178 </dependency>
179 <dependency>
180 <groupId>com.fasterxml.jackson.module</groupId>
181 <artifactId>jackson-module-jaxb-annotations</artifactId>
182 <version>${jackson.version}</version>
183 </dependency>
184 <dependency>
185 <groupId>com.fasterxml.jackson.module</groupId>
186 <artifactId>jackson-module-jsonSchema</artifactId>
187 <version>${jackson.version}</version>
188 </dependency>
189 <dependency>
190 <groupId>com.fasterxml.jackson.dataformat</groupId>
191 <artifactId>jackson-dataformat-xml</artifactId>
192 <version>${jackson.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>com.google.code.gson</groupId>
196 <artifactId>gson</artifactId>
197 </dependency>
198 <!-- Elastic Search -->
199 <dependency>
200 <groupId>org.elasticsearch</groupId>
201 <artifactId>elasticsearch</artifactId>
Pamela Dragosh8287e342018-09-14 11:23:32 -0400202 <version>${elasticsearch.version}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400203 </dependency>
204 <dependency>
205 <groupId>org.json</groupId>
206 <artifactId>json</artifactId>
207 <version>20160212</version>
208 </dependency>
209 <dependency>
210 <groupId>io.searchbox</groupId>
211 <artifactId>jest</artifactId>
212 <version>2.0.0</version>
213 <exclusions>
214 <exclusion>
215 <groupId>commons-logging</groupId>
216 <artifactId>commons-logging</artifactId>
217 </exclusion>
218 <exclusion>
219 <groupId>org.apache.httpcomponents</groupId>
220 <artifactId>httpclient</artifactId>
221 </exclusion>
222 </exclusions>
223 </dependency>
224 <dependency>
225 <groupId>org.onap.policy.engine</groupId>
226 <artifactId>ONAP-PDP</artifactId>
227 <version>${project.version}</version>
228 <exclusions>
229 <exclusion>
230 <groupId>commons-logging</groupId>
231 <artifactId>commons-logging</artifactId>
232 </exclusion>
233 <exclusion>
234 <groupId>org.apache.httpcomponents</groupId>
235 <artifactId>httpcore</artifactId>
236 </exclusion>
237 <exclusion>
238 <groupId>com.att.aft</groupId>
239 <artifactId>dme2</artifactId>
240 </exclusion>
241 </exclusions>
242 </dependency>
243 <dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400244 <groupId>org.apache.commons</groupId>
245 <artifactId>commons-compress</artifactId>
Pamela Dragosh207e1ee2018-09-14 11:46:08 -0400246 <version>${commons.compress.version}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400247 </dependency>
248 <dependency>
249 <groupId>args4j</groupId>
250 <artifactId>args4j</artifactId>
251 <version>2.32</version>
252 </dependency>
253 <dependency>
254 <groupId>org.apache.poi</groupId>
255 <artifactId>poi</artifactId>
256 <version>3.17</version>
257 </dependency>
258 <dependency>
259 <groupId>org.apache.poi</groupId>
260 <artifactId>poi-ooxml</artifactId>
261 <version>3.17</version>
262 </dependency>
263 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
264 <dependency>
265 <groupId>com.esotericsoftware.yamlbeans</groupId>
266 <artifactId>yamlbeans</artifactId>
267 <version>1.08</version>
268 </dependency>
269 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
270 <dependency>
271 <groupId>org.yaml</groupId>
272 <artifactId>snakeyaml</artifactId>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400273 </dependency>
274 <dependency>
275 <groupId>org.apache.tomcat</groupId>
276 <artifactId>tomcat-jdbc</artifactId>
277 <version>8.0.24</version>
278 </dependency>
279 <dependency>
280 <groupId>org.apache.tomcat</groupId>
281 <artifactId>tomcat-dbcp</artifactId>
282 <version>8.5.9</version>
283 </dependency>
284 </dependencies>
Guo Ruijing096a3c92017-07-14 09:34:39 +0000285</project>