Step version to 1.11.5-SNAPSHOT
[sdc.git] / catalog-fe / pom.xml
1 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xmlns="http://maven.apache.org/POM/4.0.0"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <modelVersion>4.0.0</modelVersion>
6     <artifactId>catalog-fe</artifactId>
7     <packaging>war</packaging>
8
9     <parent>
10         <groupId>org.openecomp.sdc</groupId>
11         <artifactId>sdc-main</artifactId>
12         <version>1.11.5-SNAPSHOT</version>
13     </parent>
14
15     <dependencies>
16
17         <dependency>
18             <groupId>org.projectlombok</groupId>
19             <artifactId>lombok</artifactId>
20             <version>${lombok.version}</version>
21         </dependency>
22
23         <dependency>
24             <groupId>org.functionaljava</groupId>
25             <artifactId>functionaljava</artifactId>
26             <version>${functionaljava.version}</version>
27             <scope>compile</scope>
28         </dependency>
29         <dependency>
30             <groupId>org.onap.sdc.common</groupId>
31             <artifactId>onap-configuration-management-api</artifactId>
32             <version>${project.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.openecomp.sdc</groupId>
36             <artifactId>common-app-api</artifactId>
37             <version>${project.version}</version>
38             <exclusions>
39                 <exclusion>
40                     <groupId>org.apache.httpcomponents</groupId>
41                     <artifactId>httpcore</artifactId>
42                 </exclusion>
43             </exclusions>
44         </dependency>
45
46         <!-- File changes listener -->
47         <dependency>
48             <groupId>ch.qos.logback</groupId>
49             <artifactId>logback-classic</artifactId>
50             <version>${logback.version}</version>
51             <scope>compile</scope>
52         </dependency>
53
54         <dependency>
55             <groupId>org.codehaus.groovy</groupId>
56             <artifactId>groovy</artifactId>
57             <scope>compile</scope>
58         </dependency>
59
60         <dependency>
61             <groupId>org.codehaus.janino</groupId>
62             <artifactId>janino</artifactId>
63             <version>${janino.version}</version>
64             <scope>compile</scope>
65         </dependency>
66
67         <dependency>
68             <groupId>org.yaml</groupId>
69             <artifactId>snakeyaml</artifactId>
70             <version>${snakeyaml.version}</version>
71             <scope>compile</scope>
72         </dependency>
73
74         <dependency>
75             <groupId>org.apache.commons</groupId>
76             <artifactId>commons-jci-core</artifactId>
77             <version>${commons-jci-core.version}</version>
78             <scope>compile</scope>
79             <exclusions>
80                 <exclusion>
81                     <groupId>commons-io</groupId>
82                     <artifactId>commons-io</artifactId>
83                 </exclusion>
84             </exclusions>
85         </dependency>
86
87         <dependency>
88             <groupId>com.google.code.gson</groupId>
89             <artifactId>gson</artifactId>
90             <version>${gson.version}</version>
91             <scope>compile</scope>
92         </dependency>
93
94         <dependency>
95             <groupId>org.glassfish.jersey.containers</groupId>
96             <artifactId>jersey-container-servlet</artifactId>
97             <version>${jersey-bom.version}</version>
98             <scope>compile</scope>
99         </dependency>
100
101         <dependency>
102             <groupId>org.glassfish.jersey.media</groupId>
103             <artifactId>jersey-media-multipart</artifactId>
104             <version>${jersey-bom.version}</version>
105             <scope>compile</scope>
106         </dependency>
107
108         <dependency>
109             <groupId>org.glassfish.jersey.media</groupId>
110             <artifactId>jersey-media-moxy</artifactId>
111             <version>${jersey-bom.version}</version>
112             <scope>compile</scope>
113         </dependency>
114
115
116         <dependency>
117             <groupId>org.glassfish.jersey.media</groupId>
118             <artifactId>jersey-media-json-jackson</artifactId>
119             <version>${jersey-bom.version}</version>
120             <scope>compile</scope>
121         </dependency>
122
123         <dependency>
124             <groupId>org.glassfish.jersey.inject</groupId>
125             <artifactId>jersey-hk2</artifactId>
126             <version>${jersey-bom.version}</version>
127         </dependency>
128
129         <dependency>
130             <groupId>com.fasterxml.jackson.core</groupId>
131             <artifactId>jackson-core</artifactId>
132             <version>${jackson.version}</version>
133             <scope>compile</scope>
134         </dependency>
135
136         <dependency>
137             <groupId>com.fasterxml.jackson.core</groupId>
138             <artifactId>jackson-databind</artifactId>
139             <version>${jackson.version}</version>
140             <exclusions>
141                 <exclusion>
142                     <groupId>com.fasterxml.jackson.core</groupId>
143                     <artifactId>jackson-core</artifactId>
144                 </exclusion>
145             </exclusions>
146         </dependency>
147
148         <dependency>
149             <groupId>com.fasterxml.jackson.core</groupId>
150             <artifactId>jackson-annotations</artifactId>
151             <version>${jackson-annotations.version}</version>
152             <scope>compile</scope>
153         </dependency>
154
155         <!-- http client -->
156         <dependency>
157             <groupId>org.apache.httpcomponents</groupId>
158             <artifactId>httpclient</artifactId>
159             <version>${httpclient.version}</version>
160             <exclusions>
161                 <exclusion>
162                     <groupId>org.apache.httpcomponents</groupId>
163                     <artifactId>httpcore</artifactId>
164                 </exclusion>
165             </exclusions>
166         </dependency>
167
168         <dependency>
169             <groupId>org.apache.httpcomponents</groupId>
170             <artifactId>httpcore</artifactId>
171             <version>${httpcore.version}</version>
172             <scope>compile</scope>
173         </dependency>
174
175         <dependency>
176             <groupId>org.apache.httpcomponents</groupId>
177             <artifactId>httpmime</artifactId>
178             <version>${httpclient.version}</version>
179             <exclusions>
180                 <exclusion>
181                     <groupId>org.apache.httpcomponents</groupId>
182                     <artifactId>httpcore</artifactId>
183                 </exclusion>
184             </exclusions>
185         </dependency>
186
187         <dependency>
188             <groupId>commons-logging</groupId>
189             <artifactId>commons-logging</artifactId>
190             <version>${commons-logging}</version>
191             <scope>compile</scope>
192         </dependency>
193
194         <dependency>
195             <groupId>commons-codec</groupId>
196             <artifactId>commons-codec</artifactId>
197             <version>${commons-codec}</version>
198             <scope>compile</scope>
199         </dependency>
200         <!-- http client END -->
201
202         <dependency>
203             <groupId>javax.servlet</groupId>
204             <artifactId>javax.servlet-api</artifactId>
205             <version>${servlet-api.version}</version>
206             <scope>provided</scope>
207         </dependency>
208
209         <!-- JSON and YAML Parsing -->
210         <dependency>
211             <groupId>com.fasterxml.jackson.dataformat</groupId>
212             <artifactId>jackson-dataformat-yaml</artifactId>
213             <version>${jackson.version}</version>
214             <scope>compile</scope>
215         </dependency>
216
217         <!-- Jetty Proxy -->
218         <dependency>
219             <groupId>org.eclipse.jetty</groupId>
220             <artifactId>jetty-proxy</artifactId>
221             <version>${jetty.version}</version>
222             <scope>compile</scope>
223             <exclusions>
224                 <exclusion>
225                     <groupId>org.eclipse.jetty</groupId>
226                     <artifactId>jetty-http</artifactId>
227                 </exclusion>
228             </exclusions>
229         </dependency>
230
231         <dependency>
232             <groupId>org.eclipse.jetty</groupId>
233             <artifactId>jetty-servlets</artifactId>
234             <version>${jetty.version}</version>
235             <scope>compile</scope>
236             <exclusions>
237                 <exclusion>
238                     <groupId>org.eclipse.jetty</groupId>
239                     <artifactId>jetty-http</artifactId>
240                 </exclusion>
241             </exclusions>
242         </dependency>
243
244         <!-- Proxy servlet -->
245         <dependency>
246             <groupId>com.google.guava</groupId>
247             <artifactId>guava</artifactId>
248             <version>${guava.version}</version>
249             <scope>compile</scope>
250         </dependency>
251
252         <!-- Aspects -->
253         <dependency>
254             <groupId>com.jcabi</groupId>
255             <artifactId>jcabi-aspects</artifactId>
256             <version>${jcabi.version}</version>
257             <scope>compile</scope>
258         </dependency>
259         <dependency>
260             <groupId>org.aspectj</groupId>
261             <artifactId>aspectjrt</artifactId>
262             <version>${aspectjrt.version}</version>
263             <scope>compile</scope>
264         </dependency>
265
266         <dependency>
267             <groupId>org.apache.commons</groupId>
268             <artifactId>commons-lang3</artifactId>
269             <version>${lang3.version}</version>
270             <scope>compile</scope>
271         </dependency>
272
273         <dependency>
274             <groupId>javax.xml.bind</groupId>
275             <artifactId>jaxb-api</artifactId>
276             <version>${jaxb-api.version}</version>
277             <scope>compile</scope>
278         </dependency>
279         <dependency>
280             <groupId>org.hibernate.validator</groupId>
281             <artifactId>hibernate-validator</artifactId>
282             <version>${hibernate.validator.version}</version>
283         </dependency>
284
285         <!-- Inserted for ECOMP Portal Integration -->
286         <dependency>
287             <groupId>org.owasp.esapi</groupId>
288             <artifactId>esapi</artifactId>
289             <version>${org.owasp.esapi.version}</version>
290             <exclusions>
291                 <exclusion>
292                     <groupId>log4j</groupId>
293                     <artifactId>log4j</artifactId>
294                 </exclusion>
295                 <exclusion>
296                     <groupId>commons-io</groupId>
297                     <artifactId>commons-io</artifactId>
298                 </exclusion>
299                 <exclusion>
300                     <groupId>commons-fileupload</groupId>
301                     <artifactId>commons-fileupload</artifactId>
302                 </exclusion>
303                 <exclusion>
304                     <groupId>org.apache.xmlgraphics</groupId>
305                     <artifactId>xmlgraphics-commons</artifactId>
306                 </exclusion>
307                 <exclusion>
308                     <groupId>xml-apis</groupId>
309                     <artifactId>xml-apis-ext</artifactId>
310                 </exclusion>
311                 <exclusion>
312                     <groupId>xml-apis</groupId>
313                     <artifactId>xml-apis</artifactId>
314                 </exclusion>
315                 <exclusion>
316                     <groupId>xerces</groupId>
317                     <artifactId>xercesImpl</artifactId>
318                 </exclusion>
319                 <exclusion>
320                     <groupId>net.sourceforge.nekohtml</groupId>
321                     <artifactId>nekohtml</artifactId>
322                 </exclusion>
323             </exclusions>
324         </dependency>
325         <dependency>
326             <groupId>org.onap.portal.sdk</groupId>
327             <artifactId>epsdk-fw</artifactId>
328             <version>${ecomp.version}</version>
329             <scope>compile</scope>
330             <exclusions>
331                 <exclusion>
332                     <groupId>com.att.nsa</groupId>
333                     <artifactId>cambriaClient</artifactId>
334                 </exclusion>
335                 <exclusion>
336                     <artifactId>slf4j-log4j12</artifactId>
337                     <groupId>org.slf4j</groupId>
338                 </exclusion>
339                 <exclusion>
340                     <artifactId>log4j</artifactId>
341                     <groupId>log4j</groupId>
342                 </exclusion>
343             </exclusions>
344         </dependency>
345         <!-- System metrics -->
346         <dependency>
347             <groupId>org.fusesource</groupId>
348             <artifactId>sigar</artifactId>
349             <version>${sigar.version}</version>
350             <scope>compile</scope>
351             <exclusions>
352                 <exclusion>
353                     <groupId>log4j</groupId>
354                     <artifactId>log4j</artifactId>
355                 </exclusion>
356             </exclusions>
357         </dependency>
358
359         <!-- TEST -->
360         <dependency>
361             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
362             <artifactId>jersey-test-framework-provider-bundle</artifactId>
363             <version>${jersey-bom.version}</version>
364             <type>pom</type>
365             <scope>test</scope>
366             <exclusions>
367                 <exclusion>
368                     <groupId>org.eclipse.jetty</groupId>
369                     <artifactId>jetty-server</artifactId>
370                 </exclusion>
371                 <exclusion>
372                     <groupId>org.eclipse.jetty</groupId>
373                     <artifactId>jetty-continuation</artifactId>
374                 </exclusion>
375             </exclusions>
376         </dependency>
377
378         <dependency>
379             <groupId>com.google.code.bean-matchers</groupId>
380             <artifactId>bean-matchers</artifactId>
381             <version>${bean-matchers.version}</version>
382             <scope>test</scope>
383         </dependency>
384
385         <dependency>
386             <groupId>org.eclipse.jetty</groupId>
387             <artifactId>jetty-servlet</artifactId>
388             <version>${jetty.version}</version>
389             <scope>test</scope>
390             <exclusions>
391                 <exclusion>
392                     <groupId>org.eclipse.jetty</groupId>
393                     <artifactId>jetty-server</artifactId>
394                 </exclusion>
395                 <exclusion>
396                     <groupId>org.eclipse.jetty</groupId>
397                     <artifactId>jetty-security</artifactId>
398                 </exclusion>
399             </exclusions>
400         </dependency>
401
402         <dependency>
403             <groupId>org.eclipse.jetty</groupId>
404             <artifactId>jetty-webapp</artifactId>
405             <version>${jetty.version}</version>
406             <scope>test</scope>
407             <exclusions>
408                 <exclusion>
409                     <groupId>org.eclipse.jetty</groupId>
410                     <artifactId>jetty-servlet</artifactId>
411                 </exclusion>
412             </exclusions>
413         </dependency>
414         <dependency>
415             <groupId>org.eclipse.jetty</groupId>
416             <artifactId>jetty-http</artifactId>
417             <version>${jetty.version}</version>
418         </dependency>
419         <dependency>
420             <groupId>javax.ws.rs</groupId>
421             <artifactId>javax.ws.rs-api</artifactId>
422             <version>${ws.rs.version}</version>
423             <scope>compile</scope>
424         </dependency>
425
426         <dependency>
427             <groupId>javax.validation</groupId>
428             <artifactId>validation-api</artifactId>
429             <version>${javax.validation.version}</version>
430         </dependency>
431     </dependencies>
432
433     <build>
434
435         <finalName>${project.artifactId}-${project.version}</finalName>
436
437         <plugins>
438             <plugin>
439                 <groupId>org.apache.maven.plugins</groupId>
440                 <artifactId>maven-war-plugin</artifactId>
441                 <configuration>
442                     <archive>
443                         <manifest>
444                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
445                         </manifest>
446                     </archive>
447
448                     <webResources>
449                         <resource>
450                             <directory>src/main/resources</directory>
451                         </resource>
452                     </webResources>
453                 </configuration>
454             </plugin>
455
456             <plugin>
457                 <groupId>org.eclipse.jetty</groupId>
458                 <artifactId>jetty-maven-plugin</artifactId>
459                 <version>${jetty.version}</version>
460                 <configuration>
461                     <webApp>
462                         <contextPath>/</contextPath>
463                         <webInfIncludeJarPattern>.*/.*jersey-[^/]\.jar$</webInfIncludeJarPattern>
464                     </webApp>
465                     <war>${project.build.directory}/${project.build.finalName}.war</war>
466                 </configuration>
467             </plugin>
468
469             <plugin>
470                 <groupId>org.apache.maven.plugins</groupId>
471                 <artifactId>maven-deploy-plugin</artifactId>
472                 <configuration>
473                     <skip>true</skip>
474                 </configuration>
475             </plugin>
476
477             <plugin>
478                 <!-- jcabi (log injection) -->
479                 <groupId>com.jcabi</groupId>
480                 <artifactId>jcabi-maven-plugin</artifactId>
481                 <version>${jcabi.maven.plugin.version}</version>
482                 <dependencies>
483                     <dependency>
484                         <groupId>org.aspectj</groupId>
485                         <artifactId>aspectjtools</artifactId>
486                         <version>${aspectj.version}</version>
487                     </dependency>
488                     <dependency>
489                         <groupId>org.aspectj</groupId>
490                         <artifactId>aspectjweaver</artifactId>
491                         <version>${aspectj.version}</version>
492                     </dependency>
493                 </dependencies>
494                 <executions>
495                     <execution>
496                         <goals>
497                             <goal>ajc</goal>
498                         </goals>
499                     </execution>
500                 </executions>
501             </plugin>
502             <plugin>
503                 <groupId>org.apache.maven.plugins</groupId>
504                 <artifactId>maven-clean-plugin</artifactId>
505                 <executions>
506                     <execution>
507                         <id>clean.catalog.fe.folder</id>
508                         <phase>clean</phase>
509                         <goals>
510                             <goal>clean</goal>
511                         </goals>
512                         <configuration>
513                             <filesets>
514                                 <!-- FE WAR's -->
515                                 <fileset>
516                                     <directory>${project.parent.basedir}/catalog-fe/sdc-frontend/</directory>
517                                     <followSymlinks>false</followSymlinks>
518                                     <includes>
519                                         <include>*.war</include>
520                                     </includes>
521                                 </fileset>
522                             </filesets>
523                         </configuration>
524                     </execution>
525                 </executions>
526             </plugin>
527             <plugin>
528                 <groupId>com.github.sylvainlaurent.maven</groupId>
529                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
530                 <executions>
531                     <execution>
532                         <id>validate</id>
533                         <phase>validate</phase>
534                         <goals>
535                             <goal>validate</goal>
536                         </goals>
537                         <configuration>
538                             <validationSets>
539                                 <validationSet>
540                                     <includes>
541                                         <include>src/main/resources/**/*.y*ml</include>
542                                         <include>src/test/resources/**/*.y*ml</include>
543                                     </includes>
544                                 </validationSet>
545                                 <validationSet>
546                                     <includes>
547                                         <include>src/main/resources/**/*.json</include>
548                                         <include>src/test/resources/**/*.json</include>
549                                     </includes>
550                                 </validationSet>
551                             </validationSets>
552                             <skip>${skipYamlJsonValidator}</skip>
553                         </configuration>
554                     </execution>
555                 </executions>
556             </plugin>
557
558         </plugins>
559
560         <pluginManagement>
561             <plugins>
562                 <!--This plugin's configuration is used to store Eclipse m2e settings
563                   only. It has no influence on the Maven build itself. -->
564                 <plugin>
565                     <groupId>org.eclipse.m2e</groupId>
566                     <artifactId>lifecycle-mapping</artifactId>
567                     <version>1.0.0</version>
568                     <configuration>
569                         <lifecycleMappingMetadata>
570                             <pluginExecutions>
571
572                                 <pluginExecution>
573                                     <pluginExecutionFilter>
574                                         <groupId>com.jcabi</groupId>
575                                         <artifactId>jcabi-maven-plugin</artifactId>
576                                         <versionRange>[0.0,)</versionRange>
577                                         <goals>
578                                             <goal>ajc</goal>
579                                         </goals>
580                                     </pluginExecutionFilter>
581                                     <action>
582                                         <execute/>
583                                     </action>
584                                 </pluginExecution>
585
586                             </pluginExecutions>
587                         </lifecycleMappingMetadata>
588                     </configuration>
589                 </plugin>
590             </plugins>
591         </pluginManagement>
592     </build>
593
594     <profiles>
595         <profile>
596             <id>catalog</id>
597             <activation>
598                 <activeByDefault>false</activeByDefault>
599             </activation>
600
601             <build>
602                 <finalName>${project.artifactId}-${project.version}</finalName>
603             </build>
604         </profile>
605         <profile>
606             <id>docker</id>
607             <activation>
608                 <activeByDefault>false</activeByDefault>
609             </activation>
610             <build>
611                 <plugins>
612                     <plugin>
613                         <groupId>org.apache.maven.plugins</groupId>
614                         <artifactId>maven-resources-plugin</artifactId>
615                         <executions>
616                             <execution>
617                                 <id>copy-resources-fe</id>
618                                 <phase>verify</phase>
619                                 <goals>
620                                     <goal>copy-resources</goal>
621                                 </goals>
622                                 <configuration>
623                                     <outputDirectory>${basedir}/sdc-frontend</outputDirectory>
624                                     <resources>
625                                         <resource>
626                                             <directory>${project.parent.basedir}/catalog-fe/target</directory>
627                                             <includes>
628                                                 <include>catalog-fe-${project.version}.war</include>
629                                             </includes>
630                                         </resource>
631                                         <resource>
632                                             <directory>${project.parent.basedir}/openecomp-ui/target</directory>
633                                             <includes>
634                                                 <include>onboarding-fe-${project.version}.war</include>
635                                             </includes>
636                                         </resource>
637                                     </resources>
638                                 </configuration>
639                             </execution>
640                         </executions>
641                     </plugin>
642                     <plugin>
643                         <groupId>io.fabric8</groupId>
644                         <artifactId>docker-maven-plugin</artifactId>
645                         <configuration>
646                             <verbose>${verbose}</verbose>
647                             <apiVersion>${docker.api.version}</apiVersion>
648                             <registry>${docker.registry}</registry>
649                             <authConfig>
650                                 <pull>
651                                     <username>${docker.username}</username>
652                                     <password>${docker.password}</password>
653                                 </pull>
654                             </authConfig>
655                             <images>
656
657                                 <!-- Build frontend image -->
658                                 <image>
659                                     <name>${docker.namespace}/sdc-frontend</name>
660                                     <alias>sdc-frontend</alias>
661                                     <build>
662                                         <cleanup>try</cleanup>
663                                         <dockerFileDir>${project.basedir}/sdc-frontend</dockerFileDir>
664                                         <tags>
665                                             <tag>latest</tag>
666                                             <tag>
667                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
668                                             </tag>
669                                             <tag>
670                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp}
671                                             </tag>
672                                         </tags>
673                                     </build>
674                                 </image>
675                             </images>
676                         </configuration>
677                         <executions>
678                             <execution>
679                                 <id>clean-images</id>
680                                 <phase>pre-clean</phase>
681                                 <goals>
682                                     <goal>remove</goal>
683                                 </goals>
684                                 <configuration>
685                                     <removeAll>true</removeAll>
686                                     <image>${docker.namespace}/sdc-frontend</image>
687                                 </configuration>
688                             </execution>
689
690                             <execution>
691                                 <id>generate-images</id>
692                                 <phase>install</phase>
693                                 <goals>
694                                     <goal>build</goal>
695                                 </goals>
696                             </execution>
697
698                             <execution>
699                                 <id>push-images</id>
700                                 <phase>deploy</phase>
701                                 <goals>
702                                     <goal>push</goal>
703                                 </goals>
704                                 <configuration>
705                                     <image>${docker.namespace}/sdc-frontend</image>
706                                 </configuration>
707                             </execution>
708                         </executions>
709                     </plugin>
710                 </plugins>
711             </build>
712         </profile>
713     </profiles>
714
715 </project>