blob: 4ad50dfd9c1d66b0d6808a116103fe1fe3e955f3 [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>
Sudarshan Kumar25b97732020-04-14 15:12:40 +05308 <version>3.3.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>
254 <dependency>
255 <groupId>org.springframework.boot</groupId>
256 <artifactId>spring-boot-starter</artifactId>
257 <version>1.3.0.RELEASE</version>
258 <exclusions>
259 <exclusion>
260 <groupId>org.slf4j</groupId>
261 <artifactId>log4j-over-slf4j</artifactId>
262 </exclusion>
263 <exclusion>
264 <groupId>ch.qos.logback</groupId>
265 <artifactId>logback-classic</artifactId>
266 </exclusion>
267 </exclusions>
268 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400269 <!-- Hibernate -->
270 <dependency>
271 <groupId>org.hibernate</groupId>
272 <artifactId>hibernate-core</artifactId>
273 <version>${hibernate.version}</version>
274 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400275 <dependency>
276 <groupId>org.hibernate</groupId>
277 <artifactId>hibernate-validator</artifactId>
278 <version>5.1.3.Final</version>
279 </dependency>
280 <!-- Servlet+JSP+JSTL -->
281 <dependency>
282 <groupId>javax.servlet</groupId>
283 <artifactId>javax.servlet-api</artifactId>
284 <version>3.1.0</version>
285 </dependency>
286 <dependency>
287 <groupId>javax.servlet.jsp</groupId>
288 <artifactId>javax.servlet.jsp-api</artifactId>
289 <version>2.3.1</version>
290 </dependency>
291 <dependency>
GUJJA13769512018-02-16 11:45:40 -0500292 <groupId>org.apache.taglibs</groupId>
293 <artifactId>taglibs-standard-spec</artifactId>
294 <version>1.2.5</version>
295 </dependency>
296 <dependency>
297 <groupId>org.apache.taglibs</groupId>
298 <artifactId>taglibs-standard-impl</artifactId>
299 <version>1.2.5</version>
300 </dependency>
301 <dependency>
302 <groupId>org.apache.taglibs</groupId>
303 <artifactId>taglibs-standard-jstlel</artifactId>
304 <version>1.2.5</version>
st782sb54df0d2017-05-04 07:48:42 -0400305 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400306 <!-- Apache Tiles -->
307 <dependency>
308 <groupId>org.apache.tiles</groupId>
309 <artifactId>tiles-core</artifactId>
310 <version>3.0.5</version>
311 </dependency>
312 <dependency>
313 <groupId>org.apache.tiles</groupId>
314 <artifactId>tiles-jsp</artifactId>
315 <version>3.0.5</version>
316 </dependency>
317 <dependency>
318 <groupId>org.apache.cxf</groupId>
319 <artifactId>cxf-rt-rs-client</artifactId>
320 <version>3.0.0-milestone1</version>
321 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400322 <!-- Mapper -->
323 <dependency>
324 <groupId>com.fasterxml.jackson.core</groupId>
325 <artifactId>jackson-annotations</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-core</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.jackson.core</groupId>
335 <artifactId>jackson-databind</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400336 <version>2.8.10</version>
st782sb54df0d2017-05-04 07:48:42 -0400337 </dependency>
338 <dependency>
339 <groupId>com.fasterxml</groupId>
340 <artifactId>classmate</artifactId>
341 <version>1.3.1</version>
342 </dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400343 <!-- Use Mariadb connector/j for failover -->
st782sb54df0d2017-05-04 07:48:42 -0400344 <dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400345 <groupId>org.mariadb.jdbc</groupId>
346 <artifactId>mariadb-java-client</artifactId>
347 <version>1.5.8</version>
st782sb54df0d2017-05-04 07:48:42 -0400348 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400349 <!-- Elastic Search -->
350 <dependency>
351 <groupId>org.elasticsearch</groupId>
352 <artifactId>elasticsearch</artifactId>
353 <version>2.2.0</version>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400354 <exclusions>
355 <exclusion>
356 <groupId>org.apache.lucene</groupId>
357 <artifactId>lucene-queryparser</artifactId>
358 </exclusion>
359 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400360 </dependency>
361 <dependency>
362 <groupId>io.searchbox</groupId>
363 <artifactId>jest</artifactId>
364 <version>2.0.0</version>
365 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400366 <dependency>
367 <groupId>org.apache.jcs</groupId>
368 <artifactId>jcs</artifactId>
369 <version>1.3</version>
370 <exclusions>
371 <exclusion>
372 <groupId>*</groupId>
373 <artifactId>*</artifactId>
374 </exclusion>
375 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400376 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400377 <dependency>
378 <groupId>org.apache.tomcat</groupId>
379 <artifactId>tomcat-websocket</artifactId>
380 <version>8.0.28</version>
381 <scope>provided</scope>
382 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400383 <!-- Raptor required Libraries -->
384 <!-- for static charts -->
385 <dependency>
386 <groupId>commons-lang</groupId>
387 <artifactId>commons-lang</artifactId>
388 <version>2.6</version>
389 </dependency>
390 <!-- for generating excel/csv/excelx -->
391 <dependency>
392 <groupId>org.apache.poi</groupId>
393 <artifactId>poi</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400394 <version>3.15</version>
st782sb54df0d2017-05-04 07:48:42 -0400395 <exclusions>
396 <exclusion>
397 <groupId>commons-logging</groupId>
398 <artifactId>commons-logging</artifactId>
399 </exclusion>
400 <exclusion>
401 <groupId>log4j</groupId>
402 <artifactId>log4j</artifactId>
403 </exclusion>
404 </exclusions>
405 </dependency>
406 <dependency>
407 <groupId>org.apache.poi</groupId>
408 <artifactId>poi-ooxml</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400409 <version>3.15</version>
st782sb54df0d2017-05-04 07:48:42 -0400410 <exclusions>
411 <exclusion>
412 <groupId>commons-logging</groupId>
413 <artifactId>commons-logging</artifactId>
414 </exclusion>
415 <exclusion>
416 <groupId>log4j</groupId>
417 <artifactId>log4j</artifactId>
418 </exclusion>
419 </exclusions>
420 </dependency>
421 <dependency>
422 <groupId>org.apache.poi</groupId>
423 <artifactId>poi-scratchpad</artifactId>
424 <version>3.5-FINAL</version>
425 <exclusions>
426 <exclusion>
427 <groupId>commons-logging</groupId>
428 <artifactId>commons-logging</artifactId>
429 </exclusion>
430 <exclusion>
431 <groupId>log4j</groupId>
432 <artifactId>log4j</artifactId>
433 </exclusion>
434 </exclusions>
435 </dependency>
436 <dependency>
437 <groupId>org.apache.poi</groupId>
438 <artifactId>poi-contrib</artifactId>
439 <version>3.5-FINAL</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 </exclusions>
450 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400451 <!-- Quartz -->
452 <dependency>
453 <groupId>org.quartz-scheduler</groupId>
454 <artifactId>quartz</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530455 <version>2.3.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400456 <exclusions>
457 <!-- SDK brings a new version of c3p0 -->
458 <exclusion>
459 <groupId>c3p0</groupId>
460 <artifactId>c3p0</artifactId>
461 </exclusion>
462 </exclusions>
463 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400464 <dependency>
465 <groupId>commons-codec</groupId>
466 <artifactId>commons-codec</artifactId>
467 <version>1.9</version>
468 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400469 <dependency>
470 <groupId>com.att.nsa</groupId>
471 <artifactId>cambriaClient</artifactId>
472 <version>0.0.1</version>
473 <exclusions>
474 <exclusion>
475 <groupId>commons-logging</groupId>
476 <artifactId>commons-logging</artifactId>
477 </exclusion>
478 <exclusion>
479 <groupId>log4j</groupId>
480 <artifactId>log4j</artifactId>
481 </exclusion>
482 <exclusion>
483 <groupId>log4j</groupId>
484 <artifactId>apache-log4j-extras</artifactId>
485 </exclusion>
486 <exclusion>
487 <groupId>org.slf4j</groupId>
488 <artifactId>slf4j-log4j12</artifactId>
489 </exclusion>
490 </exclusions>
491 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400492 <!-- SDK overlay war -->
493 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400494 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400495 <artifactId>epsdk-app-overlay</artifactId>
496 <version>${epsdk.version}</version>
497 <type>war</type>
498 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400499 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400500 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400501 <artifactId>epsdk-app-common</artifactId>
502 <version>${epsdk.version}</version>
503 <type>jar</type>
kg811t3aa28e92018-02-08 13:25:08 -0500504 <exclusions>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530505 <exclusion>
kg811t3aa28e92018-02-08 13:25:08 -0500506 <groupId>commons-beanutils</groupId>
507 <artifactId>commons-beanutils-core</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530508 </exclusion>
509 <exclusion>
510 <groupId>org.owasp.esapi</groupId>
511 <artifactId>esapi</artifactId>
512 </exclusion>
513 <exclusion>
514 <groupId>com.mchange</groupId>
515 <artifactId>c3p0</artifactId>
516 </exclusion>
517 </exclusions>
kg811t3aa28e92018-02-08 13:25:08 -0500518
st782sb54df0d2017-05-04 07:48:42 -0400519 </dependency>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530520 <dependency>
521 <groupId>org.owasp.esapi</groupId>
522 <artifactId>esapi</artifactId>
523 <version>2.2.0.0</version>
524 </dependency>
525 <dependency>
526 <groupId>com.mchange</groupId>
527 <artifactId>c3p0</artifactId>
528 <version>0.9.5.4</version>
529 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400530 <!-- EcompPortal common overlay -->
531 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400532 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -0500533 <artifactId>portal-be-common</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400534 <version>${project.version}</version>
st782sb54df0d2017-05-04 07:48:42 -0400535 <type>war</type>
536 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400537 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400538 <groupId>org.onap.portal</groupId>
st782s21a87612018-01-30 17:29:36 -0500539 <artifactId>portal-be-common</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400540 <version>${project.version}</version>
st782sb54df0d2017-05-04 07:48:42 -0400541 <type>jar</type>
542 <classifier>classes</classifier>
543 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400544 <dependency>
st782s21a87612018-01-30 17:29:36 -0500545 <groupId>org.onap.portal</groupId>
546 <artifactId>portal-be-common</artifactId>
547 <version>${project.version}</version>
548 <type>jar</type>
549 <classifier>tests</classifier>
550 <scope>test</scope>
551 </dependency>
552 <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-fw</artifactId>
555 <version>${epsdk.version}</version>
556 <exclusions>
557 <exclusion>
558 <groupId>commons-logging</groupId>
559 <artifactId>commons-logging</artifactId>
560 </exclusion>
561 <exclusion>
562 <groupId>log4j</groupId>
563 <artifactId>log4j</artifactId>
564 </exclusion>
565 <exclusion>
566 <groupId>log4j</groupId>
567 <artifactId>apache-log4j-extras</artifactId>
568 </exclusion>
569 <exclusion>
570 <groupId>org.slf4j</groupId>
571 <artifactId>slf4j-log4j12</artifactId>
572 </exclusion>
573 </exclusions>
574 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400575 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400576 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400577 <artifactId>epsdk-core</artifactId>
578 <version>${epsdk.version}</version>
579 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400580 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400581 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400582 <artifactId>epsdk-workflow</artifactId>
583 <version>${epsdk.version}</version>
584 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400585 <!-- Raptor required Libraries -->
586 <!-- for static charts -->
587 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400588 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400589 <artifactId>epsdk-analytics</artifactId>
590 <version>${epsdk.version}</version>
591 </dependency>
st782s21a87612018-01-30 17:29:36 -0500592 <dependency>
593 <groupId>org.json</groupId>
594 <artifactId>json</artifactId>
595 <version>20171018</version>
596 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400597 <!-- Referenced by some poms and needed for testing; do NOT use "test"
598 scope here. -->
599 <dependency>
600 <groupId>org.apache.httpcomponents</groupId>
601 <artifactId>httpclient</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400602 <version>4.5.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400603 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400604 <!-- for testing -->
605 <dependency>
606 <groupId>junit</groupId>
607 <artifactId>junit</artifactId>
608 <version>4.11</version>
609 <scope>test</scope>
610 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400611 <dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400612 <groupId>org.powermock</groupId>
613 <artifactId>powermock-api-mockito</artifactId>
614 <version>1.6.1</version>
615 </dependency>
616 <dependency>
617 <groupId>org.powermock</groupId>
618 <artifactId>powermock-core</artifactId>
619 <version>1.6.1</version>
620 </dependency>
621 <dependency>
622 <groupId>org.powermock</groupId>
623 <artifactId>powermock-module-junit4</artifactId>
624 <version>1.6.1</version>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400625 </dependency>
626 <dependency>
627 <groupId>org.mockito</groupId>
628 <artifactId>mockito-core</artifactId>
629 <version>1.8.5</version>
630 <scope>test</scope>
631 </dependency>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400632 <dependency>
st782sb54df0d2017-05-04 07:48:42 -0400633 <groupId>commons-beanutils</groupId>
634 <artifactId>commons-beanutils</artifactId>
Kishore Reddy, Gujja (kg811t)8886b472018-03-23 18:16:50 -0400635 <version>1.9.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400636 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400637 <!-- OpenID Connect Dependencies -->
638 <dependency>
639 <groupId>org.mitre</groupId>
640 <artifactId>openid-connect-client</artifactId>
st782s21a87612018-01-30 17:29:36 -0500641 <version>1.3.1</version>
st782sb54df0d2017-05-04 07:48:42 -0400642 <exclusions>
643 <exclusion>
644 <groupId>org.codehaus.jackson</groupId>
645 <artifactId>jackson-mapper-asl</artifactId>
646 </exclusion>
sa282w78224cb2018-03-30 14:09:40 -0400647 <exclusion>
648 <groupId>com.nimbusds</groupId>
649 <artifactId>nimbus-jose-jwt</artifactId>
650 </exclusion>
st782sb54df0d2017-05-04 07:48:42 -0400651 </exclusions>
652 </dependency>
st782s21a87612018-01-30 17:29:36 -0500653<!-- <dependency>
st782sb54df0d2017-05-04 07:48:42 -0400654 <groupId>org.springframework.security</groupId>
655 <artifactId>spring-security-taglibs</artifactId>
656 <version>3.2.8.RELEASE</version>
657 <exclusions>
658 <exclusion>
659 <groupId>org.springframework</groupId>
660 <artifactId>*</artifactId>
661 </exclusion>
662 </exclusions>
st782s21a87612018-01-30 17:29:36 -0500663 </dependency> -->
Christopher Lott (Christopher) (cl778h)627bada2017-06-12 09:49:00 -0400664 <dependency>
665 <groupId>org.aspectj</groupId>
666 <artifactId>aspectjrt</artifactId>
667 <version>1.8.9</version>
668 </dependency>
669 <dependency>
670 <groupId>org.aspectj</groupId>
671 <artifactId>aspectjweaver</artifactId>
672 <version>1.8.9</version>
673 </dependency>
Christopher Lott (cl778h)b6079b32017-10-04 14:14:36 -0400674 <!-- Jacoco for offline instrumentation -->
675 <dependency>
676 <groupId>org.jacoco</groupId>
677 <artifactId>org.jacoco.agent</artifactId>
678 <version>${jacocoVersion}</version>
679 <classifier>runtime</classifier>
680 </dependency>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400681 <!-- Music -->
682 <dependency>
683 <groupId>org.onap.portal.sdk</groupId>
684 <artifactId>epsdk-music</artifactId>
685 <version>${epsdk.version}</version>
Kishore Reddy, Gujja (kg811t)28459102018-05-14 17:19:51 -0400686
687 <exclusions>
688 <exclusion>
689 <groupId>com.sun.jersey</groupId>
690 <artifactId>jersey-client</artifactId>
691 </exclusion>
692 <exclusion>
693 <groupId>com.sun.jersey</groupId>
694 <artifactId>jersey-server</artifactId>
695 </exclusion>
696 <exclusion>
697 <groupId>com.sun.jersey</groupId>
698 <artifactId>jersey-json</artifactId>
699 </exclusion><exclusion>
700 <groupId>com.sun.jersey</groupId>
701 <artifactId>jersey-servlet</artifactId>
702 </exclusion>
703 </exclusions>
sa282w78224cb2018-03-30 14:09:40 -0400704 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400705 </dependencies>
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400706
707 <reporting>
708 <plugins>
709 <plugin>
710 <groupId>org.apache.maven.plugins</groupId>
711 <artifactId>maven-javadoc-plugin</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400712 <version>3.0.0-M1</version>
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400713 <configuration>
714 <failOnError>false</failOnError>
715 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
716 <docletArtifact>
717 <groupId>org.umlgraph</groupId>
718 <artifactId>umlgraph</artifactId>
719 <version>5.6</version>
720 </docletArtifact>
721 <additionalparam>-views</additionalparam>
722 <useStandardDocletOptions>true</useStandardDocletOptions>
723 </configuration>
724 </plugin>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400725
Christopher Lott (cl778h)52ef9472017-08-30 16:09:59 -0400726 </plugins>
727 </reporting>
st782sb54df0d2017-05-04 07:48:42 -0400728</project>