blob: ad9a992728a5cb916bde6452cdf3d98d555c3ef7 [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>
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -04008 <version>2.6.0-SNAPSHOT</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>
234 <dependency>
235 <groupId>org.springframework</groupId>
236 <artifactId>spring-context-support</artifactId>
237 <version>${springframework.version}</version>
238 </dependency>
239 <dependency>
240 <groupId>org.springframework</groupId>
241 <artifactId>spring-orm</artifactId>
242 <version>${springframework.version}</version>
243 </dependency>
244 <dependency>
245 <groupId>org.springframework</groupId>
246 <artifactId>spring-test</artifactId>
247 <version>${springframework.version}</version>
248 </dependency>
249 <dependency>
250 <groupId>org.springframework.boot</groupId>
251 <artifactId>spring-boot-starter</artifactId>
252 <version>1.3.0.RELEASE</version>
253 <exclusions>
254 <exclusion>
255 <groupId>org.slf4j</groupId>
256 <artifactId>log4j-over-slf4j</artifactId>
257 </exclusion>
258 <exclusion>
259 <groupId>ch.qos.logback</groupId>
260 <artifactId>logback-classic</artifactId>
261 </exclusion>
262 </exclusions>
263 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400264 <!-- Hibernate -->
265 <dependency>
266 <groupId>org.hibernate</groupId>
267 <artifactId>hibernate-core</artifactId>
268 <version>${hibernate.version}</version>
269 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400270 <dependency>
271 <groupId>org.hibernate</groupId>
272 <artifactId>hibernate-validator</artifactId>
273 <version>5.1.3.Final</version>
274 </dependency>
275 <!-- Servlet+JSP+JSTL -->
276 <dependency>
277 <groupId>javax.servlet</groupId>
278 <artifactId>javax.servlet-api</artifactId>
279 <version>3.1.0</version>
280 </dependency>
281 <dependency>
282 <groupId>javax.servlet.jsp</groupId>
283 <artifactId>javax.servlet.jsp-api</artifactId>
284 <version>2.3.1</version>
285 </dependency>
286 <dependency>
GUJJA13769512018-02-16 11:45:40 -0500287 <groupId>org.apache.taglibs</groupId>
288 <artifactId>taglibs-standard-spec</artifactId>
289 <version>1.2.5</version>
290 </dependency>
291 <dependency>
292 <groupId>org.apache.taglibs</groupId>
293 <artifactId>taglibs-standard-impl</artifactId>
294 <version>1.2.5</version>
295 </dependency>
296 <dependency>
297 <groupId>org.apache.taglibs</groupId>
298 <artifactId>taglibs-standard-jstlel</artifactId>
299 <version>1.2.5</version>
st782sb54df0d2017-05-04 07:48:42 -0400300 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400301 <!-- Apache Tiles -->
302 <dependency>
303 <groupId>org.apache.tiles</groupId>
304 <artifactId>tiles-core</artifactId>
305 <version>3.0.5</version>
306 </dependency>
307 <dependency>
308 <groupId>org.apache.tiles</groupId>
309 <artifactId>tiles-jsp</artifactId>
310 <version>3.0.5</version>
311 </dependency>
312 <dependency>
313 <groupId>org.apache.cxf</groupId>
314 <artifactId>cxf-rt-rs-client</artifactId>
315 <version>3.0.0-milestone1</version>
316 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400317 <!-- Mapper -->
318 <dependency>
319 <groupId>com.fasterxml.jackson.core</groupId>
320 <artifactId>jackson-annotations</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400321 <version>2.8.10</version>
st782sb54df0d2017-05-04 07:48:42 -0400322 </dependency>
323 <dependency>
324 <groupId>com.fasterxml.jackson.core</groupId>
325 <artifactId>jackson-core</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400326 <version>2.8.10</version>
st782sb54df0d2017-05-04 07:48:42 -0400327 </dependency>
328 <dependency>
329 <groupId>com.fasterxml.jackson.core</groupId>
330 <artifactId>jackson-databind</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400331 <version>2.8.10</version>
st782sb54df0d2017-05-04 07:48:42 -0400332 </dependency>
333 <dependency>
334 <groupId>com.fasterxml</groupId>
335 <artifactId>classmate</artifactId>
336 <version>1.3.1</version>
337 </dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400338 <!-- Use Mariadb connector/j for failover -->
st782sb54df0d2017-05-04 07:48:42 -0400339 <dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400340 <groupId>org.mariadb.jdbc</groupId>
341 <artifactId>mariadb-java-client</artifactId>
342 <version>1.5.8</version>
st782sb54df0d2017-05-04 07:48:42 -0400343 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400344 <!-- Elastic Search -->
345 <dependency>
346 <groupId>org.elasticsearch</groupId>
347 <artifactId>elasticsearch</artifactId>
348 <version>2.2.0</version>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400349 <exclusions>
350 <exclusion>
351 <groupId>org.apache.lucene</groupId>
352 <artifactId>lucene-queryparser</artifactId>
353 </exclusion>
354 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400355 </dependency>
356 <dependency>
357 <groupId>io.searchbox</groupId>
358 <artifactId>jest</artifactId>
359 <version>2.0.0</version>
360 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400361 <dependency>
362 <groupId>org.apache.jcs</groupId>
363 <artifactId>jcs</artifactId>
364 <version>1.3</version>
365 <exclusions>
366 <exclusion>
367 <groupId>*</groupId>
368 <artifactId>*</artifactId>
369 </exclusion>
370 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400371 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400372 <dependency>
373 <groupId>org.apache.tomcat</groupId>
374 <artifactId>tomcat-websocket</artifactId>
375 <version>8.0.28</version>
376 <scope>provided</scope>
377 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400378 <!-- Raptor required Libraries -->
379 <!-- for static charts -->
380 <dependency>
381 <groupId>commons-lang</groupId>
382 <artifactId>commons-lang</artifactId>
383 <version>2.6</version>
384 </dependency>
385 <!-- for generating excel/csv/excelx -->
386 <dependency>
387 <groupId>org.apache.poi</groupId>
388 <artifactId>poi</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400389 <version>3.15</version>
st782sb54df0d2017-05-04 07:48:42 -0400390 <exclusions>
391 <exclusion>
392 <groupId>commons-logging</groupId>
393 <artifactId>commons-logging</artifactId>
394 </exclusion>
395 <exclusion>
396 <groupId>log4j</groupId>
397 <artifactId>log4j</artifactId>
398 </exclusion>
399 </exclusions>
400 </dependency>
401 <dependency>
402 <groupId>org.apache.poi</groupId>
403 <artifactId>poi-ooxml</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400404 <version>3.15</version>
st782sb54df0d2017-05-04 07:48:42 -0400405 <exclusions>
406 <exclusion>
407 <groupId>commons-logging</groupId>
408 <artifactId>commons-logging</artifactId>
409 </exclusion>
410 <exclusion>
411 <groupId>log4j</groupId>
412 <artifactId>log4j</artifactId>
413 </exclusion>
414 </exclusions>
415 </dependency>
416 <dependency>
417 <groupId>org.apache.poi</groupId>
418 <artifactId>poi-scratchpad</artifactId>
419 <version>3.5-FINAL</version>
420 <exclusions>
421 <exclusion>
422 <groupId>commons-logging</groupId>
423 <artifactId>commons-logging</artifactId>
424 </exclusion>
425 <exclusion>
426 <groupId>log4j</groupId>
427 <artifactId>log4j</artifactId>
428 </exclusion>
429 </exclusions>
430 </dependency>
431 <dependency>
432 <groupId>org.apache.poi</groupId>
433 <artifactId>poi-contrib</artifactId>
434 <version>3.5-FINAL</version>
435 <exclusions>
436 <exclusion>
437 <groupId>commons-logging</groupId>
438 <artifactId>commons-logging</artifactId>
439 </exclusion>
440 <exclusion>
441 <groupId>log4j</groupId>
442 <artifactId>log4j</artifactId>
443 </exclusion>
444 </exclusions>
445 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400446 <!-- Quartz -->
447 <dependency>
448 <groupId>org.quartz-scheduler</groupId>
449 <artifactId>quartz</artifactId>
450 <version>2.2.1</version>
451 <exclusions>
452 <!-- SDK brings a new version of c3p0 -->
453 <exclusion>
454 <groupId>c3p0</groupId>
455 <artifactId>c3p0</artifactId>
456 </exclusion>
457 </exclusions>
458 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400459 <dependency>
460 <groupId>commons-codec</groupId>
461 <artifactId>commons-codec</artifactId>
462 <version>1.9</version>
463 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400464 <dependency>
465 <groupId>com.att.nsa</groupId>
466 <artifactId>cambriaClient</artifactId>
467 <version>0.0.1</version>
468 <exclusions>
469 <exclusion>
470 <groupId>commons-logging</groupId>
471 <artifactId>commons-logging</artifactId>
472 </exclusion>
473 <exclusion>
474 <groupId>log4j</groupId>
475 <artifactId>log4j</artifactId>
476 </exclusion>
477 <exclusion>
478 <groupId>log4j</groupId>
479 <artifactId>apache-log4j-extras</artifactId>
480 </exclusion>
481 <exclusion>
482 <groupId>org.slf4j</groupId>
483 <artifactId>slf4j-log4j12</artifactId>
484 </exclusion>
485 </exclusions>
486 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400487 <!-- SDK overlay war -->
488 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400489 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400490 <artifactId>epsdk-app-overlay</artifactId>
491 <version>${epsdk.version}</version>
492 <type>war</type>
493 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400494 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400495 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400496 <artifactId>epsdk-app-common</artifactId>
497 <version>${epsdk.version}</version>
498 <type>jar</type>
kg811t3aa28e92018-02-08 13:25:08 -0500499 <exclusions>
500 <exclusion>
501 <groupId>commons-beanutils</groupId>
502 <artifactId>commons-beanutils-core</artifactId>
503 </exclusion>
504 </exclusions>
505
st782sb54df0d2017-05-04 07:48:42 -0400506 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400507 <!-- EcompPortal common overlay -->
508 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400509 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -0500510 <artifactId>portal-be-common</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400511 <version>${project.version}</version>
st782sb54df0d2017-05-04 07:48:42 -0400512 <type>war</type>
513 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400514 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400515 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -0500516 <artifactId>portal-be-common</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400517 <version>${project.version}</version>
st782sb54df0d2017-05-04 07:48:42 -0400518 <type>jar</type>
519 <classifier>classes</classifier>
520 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400521 <dependency>
st782s21a87612018-01-30 17:29:36 -0500522 <groupId>org.onap.portal</groupId>
523 <artifactId>portal-be-common</artifactId>
524 <version>${project.version}</version>
525 <type>jar</type>
526 <classifier>tests</classifier>
527 <scope>test</scope>
528 </dependency>
529 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400530 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400531 <artifactId>epsdk-fw</artifactId>
532 <version>${epsdk.version}</version>
533 <exclusions>
534 <exclusion>
535 <groupId>commons-logging</groupId>
536 <artifactId>commons-logging</artifactId>
537 </exclusion>
538 <exclusion>
539 <groupId>log4j</groupId>
540 <artifactId>log4j</artifactId>
541 </exclusion>
542 <exclusion>
543 <groupId>log4j</groupId>
544 <artifactId>apache-log4j-extras</artifactId>
545 </exclusion>
546 <exclusion>
547 <groupId>org.slf4j</groupId>
548 <artifactId>slf4j-log4j12</artifactId>
549 </exclusion>
550 </exclusions>
551 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400552 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400553 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400554 <artifactId>epsdk-core</artifactId>
555 <version>${epsdk.version}</version>
556 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400557 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400558 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400559 <artifactId>epsdk-workflow</artifactId>
560 <version>${epsdk.version}</version>
561 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400562 <!-- Raptor required Libraries -->
563 <!-- for static charts -->
564 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400565 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400566 <artifactId>epsdk-analytics</artifactId>
567 <version>${epsdk.version}</version>
568 </dependency>
st782s21a87612018-01-30 17:29:36 -0500569 <dependency>
570 <groupId>org.json</groupId>
571 <artifactId>json</artifactId>
572 <version>20171018</version>
573 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400574 <!-- Referenced by some poms and needed for testing; do NOT use "test"
575 scope here. -->
576 <dependency>
577 <groupId>org.apache.httpcomponents</groupId>
578 <artifactId>httpclient</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400579 <version>4.5.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400580 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400581 <!-- for testing -->
582 <dependency>
583 <groupId>junit</groupId>
584 <artifactId>junit</artifactId>
585 <version>4.11</version>
586 <scope>test</scope>
587 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400588 <dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400589 <groupId>org.powermock</groupId>
590 <artifactId>powermock-api-mockito</artifactId>
591 <version>1.6.1</version>
592 </dependency>
593 <dependency>
594 <groupId>org.powermock</groupId>
595 <artifactId>powermock-core</artifactId>
596 <version>1.6.1</version>
597 </dependency>
598 <dependency>
599 <groupId>org.powermock</groupId>
600 <artifactId>powermock-module-junit4</artifactId>
601 <version>1.6.1</version>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400602 </dependency>
603 <dependency>
604 <groupId>org.mockito</groupId>
605 <artifactId>mockito-core</artifactId>
606 <version>1.8.5</version>
607 <scope>test</scope>
608 </dependency>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400609 <dependency>
st782sb54df0d2017-05-04 07:48:42 -0400610 <groupId>commons-beanutils</groupId>
611 <artifactId>commons-beanutils</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400612 <version>1.9.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400613 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400614 <!-- OpenID Connect Dependencies -->
615 <dependency>
616 <groupId>org.mitre</groupId>
617 <artifactId>openid-connect-client</artifactId>
st782s21a87612018-01-30 17:29:36 -0500618 <version>1.3.1</version>
st782sb54df0d2017-05-04 07:48:42 -0400619 <exclusions>
620 <exclusion>
621 <groupId>org.codehaus.jackson</groupId>
622 <artifactId>jackson-mapper-asl</artifactId>
623 </exclusion>
sa282w78224cb2018-03-30 14:09:40 -0400624 <exclusion>
625 <groupId>com.nimbusds</groupId>
626 <artifactId>nimbus-jose-jwt</artifactId>
627 </exclusion>
st782sb54df0d2017-05-04 07:48:42 -0400628 </exclusions>
629 </dependency>
st782s21a87612018-01-30 17:29:36 -0500630<!-- <dependency>
st782sb54df0d2017-05-04 07:48:42 -0400631 <groupId>org.springframework.security</groupId>
632 <artifactId>spring-security-taglibs</artifactId>
633 <version>3.2.8.RELEASE</version>
634 <exclusions>
635 <exclusion>
636 <groupId>org.springframework</groupId>
637 <artifactId>*</artifactId>
638 </exclusion>
639 </exclusions>
st782s21a87612018-01-30 17:29:36 -0500640 </dependency> -->
Christopher Lott (Christopher) (cl778h)627bada2017-06-12 09:49:00 -0400641 <dependency>
642 <groupId>org.aspectj</groupId>
643 <artifactId>aspectjrt</artifactId>
644 <version>1.8.9</version>
645 </dependency>
646 <dependency>
647 <groupId>org.aspectj</groupId>
648 <artifactId>aspectjweaver</artifactId>
649 <version>1.8.9</version>
650 </dependency>
Christopher Lott (cl778h)b6079b32017-10-04 14:14:36 -0400651 <!-- Jacoco for offline instrumentation -->
652 <dependency>
653 <groupId>org.jacoco</groupId>
654 <artifactId>org.jacoco.agent</artifactId>
655 <version>${jacocoVersion}</version>
656 <classifier>runtime</classifier>
657 </dependency>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400658 <!-- Music -->
659 <dependency>
660 <groupId>org.onap.portal.sdk</groupId>
661 <artifactId>epsdk-music</artifactId>
662 <version>${epsdk.version}</version>
Kishore Reddy, Gujja (kg811t)28459102018-05-14 17:19:51 -0400663
664 <exclusions>
665 <exclusion>
666 <groupId>com.sun.jersey</groupId>
667 <artifactId>jersey-client</artifactId>
668 </exclusion>
669 <exclusion>
670 <groupId>com.sun.jersey</groupId>
671 <artifactId>jersey-server</artifactId>
672 </exclusion>
673 <exclusion>
674 <groupId>com.sun.jersey</groupId>
675 <artifactId>jersey-json</artifactId>
676 </exclusion><exclusion>
677 <groupId>com.sun.jersey</groupId>
678 <artifactId>jersey-servlet</artifactId>
679 </exclusion>
680 </exclusions>
sa282w78224cb2018-03-30 14:09:40 -0400681 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400682 </dependencies>
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400683
684 <reporting>
685 <plugins>
686 <plugin>
687 <groupId>org.apache.maven.plugins</groupId>
688 <artifactId>maven-javadoc-plugin</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400689 <version>3.0.0-M1</version>
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400690 <configuration>
691 <failOnError>false</failOnError>
692 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
693 <docletArtifact>
694 <groupId>org.umlgraph</groupId>
695 <artifactId>umlgraph</artifactId>
696 <version>5.6</version>
697 </docletArtifact>
698 <additionalparam>-views</additionalparam>
699 <useStandardDocletOptions>true</useStandardDocletOptions>
700 </configuration>
701 </plugin>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400702
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400703 </plugins>
704 </reporting>
st782sb54df0d2017-05-04 07:48:42 -0400705</project>