blob: 4bc540366437ac9e63989752c5a9485aea249e48 [file] [log] [blame]
st782sb54df0d2017-05-04 07:48:42 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
st782s21a87612018-01-30 17:29:36 -05004
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04005 <parent>
6 <groupId>org.onap.portal</groupId>
7 <artifactId>onap-portal-parent</artifactId>
Muni Mohan Kunchifca38e12020-07-01 09:38:08 -04008 <version>3.4.0</version>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04009 </parent>
10
st782s21a87612018-01-30 17:29:36 -050011 <artifactId>portal-be-os</artifactId>
st782sb54df0d2017-05-04 07:48:42 -040012 <packaging>war</packaging>
st782sb54df0d2017-05-04 07:48:42 -040013
14 <properties>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040015 <!-- If skipTests is false use this command to generate the report: mvn
16 clean jacoco:prepare-agent install jacoco:report -->
Christopher Lott (cl778h)e43e03d2017-08-25 15:31:33 -040017 <skipTests>false</skipTests>
st782sb54df0d2017-05-04 07:48:42 -040018 </properties>
19
st782sb54df0d2017-05-04 07:48:42 -040020 <build>
21 <sourceDirectory>src/main/java</sourceDirectory>
22 <!-- The war file name carries no version number -->
23 <finalName>${project.artifactId}</finalName>
24
25 <plugins>
26 <plugin>
st782sb54df0d2017-05-04 07:48:42 -040027 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-site-plugin</artifactId>
29 <version>3.6</version>
30 <dependencies>
31 <dependency>
32 <groupId>org.apache.maven.wagon</groupId>
33 <artifactId>wagon-webdav-jackrabbit</artifactId>
34 <version>2.10</version>
35 </dependency>
36 </dependencies>
37 </plugin>
38 <plugin>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040039 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-surefire-plugin</artifactId>
41 <version>2.19.1</version>
42 <configuration>
43 <skipTests>${skipTests}</skipTests>
44 <includes>
45 <include>**/*Test.java</include>
46 <include>**/*TestCase.java</include>
47 <inlcude>**/*TestSuite.java</inlcude>
48 </includes>
49 <!-- Intentionally Excluding TestFromSuite -->
50 <excludes>
51 <exclude>**/*TestFromSuite.java</exclude>
52 </excludes>
53 <additionalClasspathElements>
54 <additionalClasspathElement>${basedir}/src/main/webapp</additionalClasspathElement>
55 <additionalClasspathElement>../ecomp-portal-BE-common/src/main/webapp</additionalClasspathElement>
56 <additionalClasspathElement>../ecomp-portal-BE-common</additionalClasspathElement>
57 </additionalClasspathElements>
58 <systemPropertyVariables>
59 <container.classpath>classpath:</container.classpath>
60 </systemPropertyVariables>
61 </configuration>
62 </plugin>
st782sb54df0d2017-05-04 07:48:42 -040063
64 <plugin>
65 <artifactId>maven-war-plugin</artifactId>
66 <version>2.6</version>
67 <configuration>
68 <warSourceDirectory>src/main/webapp</warSourceDirectory>
69 <failOnMissingWebXml>false</failOnMissingWebXml>
70 <archive>
71 <manifest>
72 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
73 </manifest>
74 <manifestEntries>
Christopher Lott (cl778h)99565bb2017-07-10 14:04:15 -040075 <Build-Number>${project.version}.${build.number}</Build-Number>
st782sb54df0d2017-05-04 07:48:42 -040076 <Build-Time>${maven.build.timestamp}</Build-Time>
77 </manifestEntries>
78 </archive>
79 <overlays>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040080 <!-- specify the order in which these should be applied -->
st782sb54df0d2017-05-04 07:48:42 -040081 <overlay>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040082 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -050083 <artifactId>portal-be-common</artifactId>
st782sb54df0d2017-05-04 07:48:42 -040084 </overlay>
Christopher Lott (cl778h)a0b91522017-07-31 18:20:49 -040085 <overlay>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040086 <groupId>org.onap.portal.sdk</groupId>
Christopher Lott (cl778h)a0b91522017-07-31 18:20:49 -040087 <artifactId>epsdk-app-overlay</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040088 </overlay>
st782sb54df0d2017-05-04 07:48:42 -040089 </overlays>
90 </configuration>
91 </plugin>
92
Christopher Lott (cl778h)31ba5d12017-07-12 14:28:05 -040093 <!-- No deployment step for this project -->
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-deploy-plugin</artifactId>
97 <version>2.8</version>
98 <configuration>
99 <skip>true</skip>
100 </configuration>
101 </plugin>
st782sb54df0d2017-05-04 07:48:42 -0400102
103 <plugin>
104 <artifactId>maven-resources-plugin</artifactId>
Christopher Lott (cl778h)f57e82d2017-08-24 14:34:31 -0400105 <version>3.0.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400106 <!-- Your own property files can be placed in ecomp-portal-be/../../overrides
107 directory and they will override the generic source controlled versions at
108 build time allowing you to test locally with your own settings. -->
109 <executions>
110 <execution>
111 <id>copy-custom-properties1</id>
112 <phase>process-resources</phase>
113 <goals>
114 <goal>copy-resources</goal>
115 </goals>
116 <configuration>
117 <overwrite>true</overwrite>
118 <outputDirectory>${basedir}/war/WEB-INF/conf</outputDirectory>
119 <resources>
120 <resource>
121 <directory>${basedir}/../../overrides</directory>
122 <includes>
123 <include>system.properties</include>
124 </includes>
125 </resource>
126 </resources>
127 </configuration>
128 </execution>
129 <execution>
130 <id>copy-custom-properties2</id>
131 <phase>process-resources</phase>
132 <goals>
133 <goal>copy-resources</goal>
134 </goals>
135 <configuration>
136 <overwrite>true</overwrite>
137 <outputDirectory>${basedir}/war/WEB-INF/fusion/conf</outputDirectory>
138 <resources>
139 <resource>
140 <directory>${basedir}/../../overrides</directory>
141 <includes>
142 <include>fusion.properties</include>
143 </includes>
144 </resource>
145 </resources>
146 </configuration>
147 </execution>
148 <execution>
149 <id>copy-custom-properties3</id>
150 <phase>process-resources</phase>
151 <goals>
152 <goal>copy-resources</goal>
153 </goals>
154 <configuration>
155 <overwrite>true</overwrite>
156 <outputDirectory>${basedir}/src/main/resources</outputDirectory>
157 <resources>
158 <resource>
159 <directory>${basedir}/../../overrides</directory>
160 <includes>
161 <include>portal.properties</include>
162 <include>openid-connect.properties</include>
163 <include>openid-keystore.jwks</include>
164 </includes>
165 </resource>
166 </resources>
167 </configuration>
168 </execution>
169 </executions>
170 </plugin>
st782sb54df0d2017-05-04 07:48:42 -0400171 </plugins>
172
173 <testResources>
174 <testResource>
175 <directory>src/test/java</directory>
176 <includes>
177 <include>**/*Test*.*</include>
178 </includes>
179 </testResource>
180 </testResources>
181
182 <resources>
183 <resource>
184 <directory>src/main/resources</directory>
185 <includes>
186 <include>**/*.xml</include>
187 <include>**/*.ccf</include>
188 <include>**/*.properties</include>
189 <include>**/*.jwks</include>
190 </includes>
191 </resource>
192 <resource>
193 <directory>src/test/resources</directory>
194 <includes>
195 <include>**/*.xml</include>
196 <include>**/*.properties</include>
197 </includes>
198 </resource>
199 <!-- picks up the applicationcodes.properties file presented in \src\
200 path -->
201 <resource>
202 <directory>src/main/java</directory>
203 <includes>
204 <include>**/*.xml</include>
205 <include>**/*.properties</include>
206 </includes>
207 </resource>
208 </resources>
209
210 </build>
211
212 <dependencies>
st782sb54df0d2017-05-04 07:48:42 -0400213 <!-- Spring -->
214 <dependency>
215 <groupId>org.springframework</groupId>
216 <artifactId>spring-core</artifactId>
217 <version>${springframework.version}</version>
218 </dependency>
219 <dependency>
220 <groupId>org.springframework</groupId>
221 <artifactId>spring-web</artifactId>
222 <version>${springframework.version}</version>
223 </dependency>
224 <dependency>
225 <groupId>org.springframework</groupId>
226 <artifactId>spring-webmvc</artifactId>
227 <version>${springframework.version}</version>
228 </dependency>
229 <dependency>
230 <groupId>org.springframework</groupId>
231 <artifactId>spring-tx</artifactId>
232 <version>${springframework.version}</version>
233 </dependency>
Sudarshan Kumard7c3aae2020-03-12 14:27:57 +0530234 <dependency>
235 <groupId>org.springframework</groupId>
236 <artifactId>spring-expression</artifactId>
237 <version>${springframework.version}</version>
238 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400239 <dependency>
240 <groupId>org.springframework</groupId>
241 <artifactId>spring-context-support</artifactId>
242 <version>${springframework.version}</version>
243 </dependency>
244 <dependency>
245 <groupId>org.springframework</groupId>
246 <artifactId>spring-orm</artifactId>
247 <version>${springframework.version}</version>
248 </dependency>
249 <dependency>
250 <groupId>org.springframework</groupId>
251 <artifactId>spring-test</artifactId>
252 <version>${springframework.version}</version>
253 </dependency>
jz385pcfc431e2020-06-03 12:50:14 +0530254
st782sb54df0d2017-05-04 07:48:42 -0400255 <!-- Hibernate -->
256 <dependency>
257 <groupId>org.hibernate</groupId>
258 <artifactId>hibernate-core</artifactId>
259 <version>${hibernate.version}</version>
260 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400261 <dependency>
262 <groupId>org.hibernate</groupId>
263 <artifactId>hibernate-validator</artifactId>
264 <version>5.1.3.Final</version>
265 </dependency>
266 <!-- Servlet+JSP+JSTL -->
267 <dependency>
268 <groupId>javax.servlet</groupId>
269 <artifactId>javax.servlet-api</artifactId>
270 <version>3.1.0</version>
271 </dependency>
272 <dependency>
273 <groupId>javax.servlet.jsp</groupId>
274 <artifactId>javax.servlet.jsp-api</artifactId>
275 <version>2.3.1</version>
276 </dependency>
277 <dependency>
GUJJA13769512018-02-16 11:45:40 -0500278 <groupId>org.apache.taglibs</groupId>
279 <artifactId>taglibs-standard-spec</artifactId>
280 <version>1.2.5</version>
281 </dependency>
282 <dependency>
283 <groupId>org.apache.taglibs</groupId>
284 <artifactId>taglibs-standard-impl</artifactId>
285 <version>1.2.5</version>
286 </dependency>
287 <dependency>
288 <groupId>org.apache.taglibs</groupId>
289 <artifactId>taglibs-standard-jstlel</artifactId>
290 <version>1.2.5</version>
st782sb54df0d2017-05-04 07:48:42 -0400291 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400292 <!-- Apache Tiles -->
293 <dependency>
294 <groupId>org.apache.tiles</groupId>
295 <artifactId>tiles-core</artifactId>
296 <version>3.0.5</version>
297 </dependency>
298 <dependency>
299 <groupId>org.apache.tiles</groupId>
300 <artifactId>tiles-jsp</artifactId>
301 <version>3.0.5</version>
302 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400303 <!-- Mapper -->
jz385pcfc431e2020-06-03 12:50:14 +0530304
st782sb54df0d2017-05-04 07:48:42 -0400305 <dependency>
306 <groupId>com.fasterxml</groupId>
307 <artifactId>classmate</artifactId>
308 <version>1.3.1</version>
309 </dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400310 <!-- Use Mariadb connector/j for failover -->
st782sb54df0d2017-05-04 07:48:42 -0400311 <dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400312 <groupId>org.mariadb.jdbc</groupId>
313 <artifactId>mariadb-java-client</artifactId>
314 <version>1.5.8</version>
st782sb54df0d2017-05-04 07:48:42 -0400315 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400316 <!-- Elastic Search -->
317 <dependency>
318 <groupId>org.elasticsearch</groupId>
319 <artifactId>elasticsearch</artifactId>
320 <version>2.2.0</version>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400321 <exclusions>
322 <exclusion>
323 <groupId>org.apache.lucene</groupId>
324 <artifactId>lucene-queryparser</artifactId>
325 </exclusion>
326 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400327 </dependency>
328 <dependency>
329 <groupId>io.searchbox</groupId>
330 <artifactId>jest</artifactId>
331 <version>2.0.0</version>
332 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400333 <dependency>
334 <groupId>org.apache.jcs</groupId>
335 <artifactId>jcs</artifactId>
336 <version>1.3</version>
337 <exclusions>
338 <exclusion>
339 <groupId>*</groupId>
340 <artifactId>*</artifactId>
341 </exclusion>
342 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400343 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400344 <dependency>
345 <groupId>org.apache.tomcat</groupId>
346 <artifactId>tomcat-websocket</artifactId>
347 <version>8.0.28</version>
348 <scope>provided</scope>
349 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400350 <!-- Raptor required Libraries -->
351 <!-- for static charts -->
352 <dependency>
353 <groupId>commons-lang</groupId>
354 <artifactId>commons-lang</artifactId>
355 <version>2.6</version>
356 </dependency>
357 <!-- for generating excel/csv/excelx -->
358 <dependency>
359 <groupId>org.apache.poi</groupId>
360 <artifactId>poi</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400361 <version>3.15</version>
st782sb54df0d2017-05-04 07:48:42 -0400362 <exclusions>
363 <exclusion>
364 <groupId>commons-logging</groupId>
365 <artifactId>commons-logging</artifactId>
366 </exclusion>
367 <exclusion>
368 <groupId>log4j</groupId>
369 <artifactId>log4j</artifactId>
370 </exclusion>
371 </exclusions>
372 </dependency>
373 <dependency>
374 <groupId>org.apache.poi</groupId>
375 <artifactId>poi-ooxml</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400376 <version>3.15</version>
st782sb54df0d2017-05-04 07:48:42 -0400377 <exclusions>
378 <exclusion>
379 <groupId>commons-logging</groupId>
380 <artifactId>commons-logging</artifactId>
381 </exclusion>
382 <exclusion>
383 <groupId>log4j</groupId>
384 <artifactId>log4j</artifactId>
385 </exclusion>
386 </exclusions>
387 </dependency>
388 <dependency>
389 <groupId>org.apache.poi</groupId>
390 <artifactId>poi-scratchpad</artifactId>
391 <version>3.5-FINAL</version>
392 <exclusions>
393 <exclusion>
394 <groupId>commons-logging</groupId>
395 <artifactId>commons-logging</artifactId>
396 </exclusion>
397 <exclusion>
398 <groupId>log4j</groupId>
399 <artifactId>log4j</artifactId>
400 </exclusion>
401 </exclusions>
402 </dependency>
403 <dependency>
404 <groupId>org.apache.poi</groupId>
405 <artifactId>poi-contrib</artifactId>
406 <version>3.5-FINAL</version>
407 <exclusions>
408 <exclusion>
409 <groupId>commons-logging</groupId>
410 <artifactId>commons-logging</artifactId>
411 </exclusion>
412 <exclusion>
413 <groupId>log4j</groupId>
414 <artifactId>log4j</artifactId>
415 </exclusion>
416 </exclusions>
417 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400418 <!-- Quartz -->
419 <dependency>
420 <groupId>org.quartz-scheduler</groupId>
421 <artifactId>quartz</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530422 <version>2.3.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400423 <exclusions>
424 <!-- SDK brings a new version of c3p0 -->
425 <exclusion>
426 <groupId>c3p0</groupId>
427 <artifactId>c3p0</artifactId>
428 </exclusion>
429 </exclusions>
430 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400431 <dependency>
432 <groupId>commons-codec</groupId>
433 <artifactId>commons-codec</artifactId>
434 <version>1.9</version>
435 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400436 <dependency>
437 <groupId>com.att.nsa</groupId>
438 <artifactId>cambriaClient</artifactId>
439 <version>0.0.1</version>
440 <exclusions>
441 <exclusion>
442 <groupId>commons-logging</groupId>
443 <artifactId>commons-logging</artifactId>
444 </exclusion>
445 <exclusion>
446 <groupId>log4j</groupId>
447 <artifactId>log4j</artifactId>
448 </exclusion>
449 <exclusion>
450 <groupId>log4j</groupId>
451 <artifactId>apache-log4j-extras</artifactId>
452 </exclusion>
453 <exclusion>
454 <groupId>org.slf4j</groupId>
455 <artifactId>slf4j-log4j12</artifactId>
456 </exclusion>
457 </exclusions>
458 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400459 <!-- SDK overlay war -->
460 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400461 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400462 <artifactId>epsdk-app-overlay</artifactId>
463 <version>${epsdk.version}</version>
464 <type>war</type>
465 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400466 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400467 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400468 <artifactId>epsdk-app-common</artifactId>
469 <version>${epsdk.version}</version>
470 <type>jar</type>
kg811t3aa28e92018-02-08 13:25:08 -0500471 <exclusions>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530472 <exclusion>
kg811t3aa28e92018-02-08 13:25:08 -0500473 <groupId>commons-beanutils</groupId>
474 <artifactId>commons-beanutils-core</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530475 </exclusion>
476 <exclusion>
477 <groupId>org.owasp.esapi</groupId>
478 <artifactId>esapi</artifactId>
479 </exclusion>
480 <exclusion>
481 <groupId>com.mchange</groupId>
482 <artifactId>c3p0</artifactId>
483 </exclusion>
484 </exclusions>
kg811t3aa28e92018-02-08 13:25:08 -0500485
st782sb54df0d2017-05-04 07:48:42 -0400486 </dependency>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530487 <dependency>
488 <groupId>org.owasp.esapi</groupId>
489 <artifactId>esapi</artifactId>
490 <version>2.2.0.0</version>
491 </dependency>
492 <dependency>
493 <groupId>com.mchange</groupId>
494 <artifactId>c3p0</artifactId>
495 <version>0.9.5.4</version>
496 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400497 <!-- EcompPortal common overlay -->
498 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400499 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -0500500 <artifactId>portal-be-common</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400501 <version>${project.version}</version>
st782sb54df0d2017-05-04 07:48:42 -0400502 <type>war</type>
503 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400504 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400505 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -0500506 <artifactId>portal-be-common</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400507 <version>${project.version}</version>
st782sb54df0d2017-05-04 07:48:42 -0400508 <type>jar</type>
509 <classifier>classes</classifier>
510 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400511 <dependency>
st782s21a87612018-01-30 17:29:36 -0500512 <groupId>org.onap.portal</groupId>
513 <artifactId>portal-be-common</artifactId>
514 <version>${project.version}</version>
515 <type>jar</type>
516 <classifier>tests</classifier>
517 <scope>test</scope>
518 </dependency>
519 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400520 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400521 <artifactId>epsdk-fw</artifactId>
522 <version>${epsdk.version}</version>
523 <exclusions>
524 <exclusion>
525 <groupId>commons-logging</groupId>
526 <artifactId>commons-logging</artifactId>
527 </exclusion>
528 <exclusion>
529 <groupId>log4j</groupId>
530 <artifactId>log4j</artifactId>
531 </exclusion>
532 <exclusion>
533 <groupId>log4j</groupId>
534 <artifactId>apache-log4j-extras</artifactId>
535 </exclusion>
536 <exclusion>
537 <groupId>org.slf4j</groupId>
538 <artifactId>slf4j-log4j12</artifactId>
539 </exclusion>
540 </exclusions>
541 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400542 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400543 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400544 <artifactId>epsdk-core</artifactId>
545 <version>${epsdk.version}</version>
546 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400547 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400548 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400549 <artifactId>epsdk-workflow</artifactId>
550 <version>${epsdk.version}</version>
551 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400552 <!-- Raptor required Libraries -->
553 <!-- for static charts -->
554 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400555 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400556 <artifactId>epsdk-analytics</artifactId>
557 <version>${epsdk.version}</version>
558 </dependency>
st782s21a87612018-01-30 17:29:36 -0500559 <dependency>
560 <groupId>org.json</groupId>
561 <artifactId>json</artifactId>
562 <version>20171018</version>
563 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400564 <!-- Referenced by some poms and needed for testing; do NOT use "test"
565 scope here. -->
566 <dependency>
567 <groupId>org.apache.httpcomponents</groupId>
568 <artifactId>httpclient</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400569 <version>4.5.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400570 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400571 <!-- for testing -->
572 <dependency>
573 <groupId>junit</groupId>
574 <artifactId>junit</artifactId>
575 <version>4.11</version>
576 <scope>test</scope>
577 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400578 <dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400579 <groupId>org.powermock</groupId>
580 <artifactId>powermock-api-mockito</artifactId>
581 <version>1.6.1</version>
582 </dependency>
583 <dependency>
584 <groupId>org.powermock</groupId>
585 <artifactId>powermock-core</artifactId>
586 <version>1.6.1</version>
587 </dependency>
588 <dependency>
589 <groupId>org.powermock</groupId>
590 <artifactId>powermock-module-junit4</artifactId>
591 <version>1.6.1</version>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400592 </dependency>
593 <dependency>
594 <groupId>org.mockito</groupId>
595 <artifactId>mockito-core</artifactId>
596 <version>1.8.5</version>
597 <scope>test</scope>
598 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400599 <!-- OpenID Connect Dependencies -->
600 <dependency>
601 <groupId>org.mitre</groupId>
602 <artifactId>openid-connect-client</artifactId>
st782s21a87612018-01-30 17:29:36 -0500603 <version>1.3.1</version>
st782sb54df0d2017-05-04 07:48:42 -0400604 <exclusions>
605 <exclusion>
606 <groupId>org.codehaus.jackson</groupId>
607 <artifactId>jackson-mapper-asl</artifactId>
608 </exclusion>
sa282w78224cb2018-03-30 14:09:40 -0400609 <exclusion>
610 <groupId>com.nimbusds</groupId>
611 <artifactId>nimbus-jose-jwt</artifactId>
612 </exclusion>
st782sb54df0d2017-05-04 07:48:42 -0400613 </exclusions>
614 </dependency>
st782s21a87612018-01-30 17:29:36 -0500615<!-- <dependency>
st782sb54df0d2017-05-04 07:48:42 -0400616 <groupId>org.springframework.security</groupId>
617 <artifactId>spring-security-taglibs</artifactId>
618 <version>3.2.8.RELEASE</version>
619 <exclusions>
620 <exclusion>
621 <groupId>org.springframework</groupId>
622 <artifactId>*</artifactId>
623 </exclusion>
624 </exclusions>
st782s21a87612018-01-30 17:29:36 -0500625 </dependency> -->
Christopher Lott (Christopher) (cl778h)627bada2017-06-12 09:49:00 -0400626 <dependency>
627 <groupId>org.aspectj</groupId>
628 <artifactId>aspectjrt</artifactId>
629 <version>1.8.9</version>
630 </dependency>
631 <dependency>
632 <groupId>org.aspectj</groupId>
633 <artifactId>aspectjweaver</artifactId>
634 <version>1.8.9</version>
635 </dependency>
Christopher Lott (cl778h)b6079b32017-10-04 14:14:36 -0400636 <!-- Jacoco for offline instrumentation -->
637 <dependency>
638 <groupId>org.jacoco</groupId>
639 <artifactId>org.jacoco.agent</artifactId>
640 <version>${jacocoVersion}</version>
641 <classifier>runtime</classifier>
642 </dependency>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400643 <!-- Music -->
644 <dependency>
645 <groupId>org.onap.portal.sdk</groupId>
646 <artifactId>epsdk-music</artifactId>
647 <version>${epsdk.version}</version>
Kishore Reddy, Gujja (kg811t)28459102018-05-14 17:19:51 -0400648
649 <exclusions>
650 <exclusion>
651 <groupId>com.sun.jersey</groupId>
652 <artifactId>jersey-client</artifactId>
653 </exclusion>
654 <exclusion>
655 <groupId>com.sun.jersey</groupId>
656 <artifactId>jersey-server</artifactId>
657 </exclusion>
658 <exclusion>
659 <groupId>com.sun.jersey</groupId>
660 <artifactId>jersey-json</artifactId>
661 </exclusion><exclusion>
662 <groupId>com.sun.jersey</groupId>
663 <artifactId>jersey-servlet</artifactId>
664 </exclusion>
665 </exclusions>
sa282w78224cb2018-03-30 14:09:40 -0400666 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400667 </dependencies>
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400668
669 <reporting>
670 <plugins>
671 <plugin>
672 <groupId>org.apache.maven.plugins</groupId>
673 <artifactId>maven-javadoc-plugin</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400674 <version>3.0.0-M1</version>
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400675 <configuration>
676 <failOnError>false</failOnError>
677 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
678 <docletArtifact>
679 <groupId>org.umlgraph</groupId>
680 <artifactId>umlgraph</artifactId>
681 <version>5.6</version>
682 </docletArtifact>
683 <additionalparam>-views</additionalparam>
684 <useStandardDocletOptions>true</useStandardDocletOptions>
685 </configuration>
686 </plugin>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400687
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400688 </plugins>
689 </reporting>
st782sb54df0d2017-05-04 07:48:42 -0400690</project>