Step version to 1.10.2-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.10.2-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             </exclusions>
316         </dependency>
317         <dependency>
318             <groupId>org.onap.portal.sdk</groupId>
319             <artifactId>epsdk-fw</artifactId>
320             <version>${ecomp.version}</version>
321             <scope>compile</scope>
322             <exclusions>
323                 <exclusion>
324                     <groupId>com.att.nsa</groupId>
325                     <artifactId>cambriaClient</artifactId>
326                 </exclusion>
327                 <exclusion>
328                     <artifactId>slf4j-log4j12</artifactId>
329                     <groupId>org.slf4j</groupId>
330                 </exclusion>
331                 <exclusion>
332                     <artifactId>log4j</artifactId>
333                     <groupId>log4j</groupId>
334                 </exclusion>
335             </exclusions>
336         </dependency>
337         <!-- System metrics -->
338         <dependency>
339             <groupId>org.fusesource</groupId>
340             <artifactId>sigar</artifactId>
341             <version>${sigar.version}</version>
342             <scope>compile</scope>
343             <exclusions>
344                 <exclusion>
345                     <groupId>log4j</groupId>
346                     <artifactId>log4j</artifactId>
347                 </exclusion>
348             </exclusions>
349         </dependency>
350
351         <!-- TEST -->
352         <dependency>
353             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
354             <artifactId>jersey-test-framework-provider-bundle</artifactId>
355             <version>${jersey-bom.version}</version>
356             <type>pom</type>
357             <scope>test</scope>
358             <exclusions>
359                 <exclusion>
360                     <groupId>org.eclipse.jetty</groupId>
361                     <artifactId>jetty-server</artifactId>
362                 </exclusion>
363                 <exclusion>
364                     <groupId>org.eclipse.jetty</groupId>
365                     <artifactId>jetty-continuation</artifactId>
366                 </exclusion>
367             </exclusions>
368         </dependency>
369
370         <dependency>
371             <groupId>com.google.code.bean-matchers</groupId>
372             <artifactId>bean-matchers</artifactId>
373             <version>${bean-matchers.version}</version>
374             <scope>test</scope>
375         </dependency>
376
377         <dependency>
378             <groupId>org.eclipse.jetty</groupId>
379             <artifactId>jetty-servlet</artifactId>
380             <version>${jetty.version}</version>
381             <scope>test</scope>
382             <exclusions>
383                 <exclusion>
384                     <groupId>org.eclipse.jetty</groupId>
385                     <artifactId>jetty-server</artifactId>
386                 </exclusion>
387                 <exclusion>
388                     <groupId>org.eclipse.jetty</groupId>
389                     <artifactId>jetty-security</artifactId>
390                 </exclusion>
391             </exclusions>
392         </dependency>
393
394         <dependency>
395             <groupId>org.eclipse.jetty</groupId>
396             <artifactId>jetty-webapp</artifactId>
397             <version>${jetty.version}</version>
398             <scope>test</scope>
399             <exclusions>
400                 <exclusion>
401                     <groupId>org.eclipse.jetty</groupId>
402                     <artifactId>jetty-servlet</artifactId>
403                 </exclusion>
404             </exclusions>
405         </dependency>
406         <dependency>
407             <groupId>org.eclipse.jetty</groupId>
408             <artifactId>jetty-http</artifactId>
409             <version>${jetty.version}</version>
410         </dependency>
411         <dependency>
412             <groupId>javax.ws.rs</groupId>
413             <artifactId>javax.ws.rs-api</artifactId>
414             <version>${ws.rs.version}</version>
415             <scope>compile</scope>
416         </dependency>
417
418         <dependency>
419             <groupId>javax.validation</groupId>
420             <artifactId>validation-api</artifactId>
421             <version>${javax.validation.version}</version>
422         </dependency>
423     </dependencies>
424
425     <build>
426
427         <finalName>${project.artifactId}-${project.version}</finalName>
428
429         <plugins>
430             <plugin>
431                 <groupId>org.apache.maven.plugins</groupId>
432                 <artifactId>maven-war-plugin</artifactId>
433                 <configuration>
434                     <archive>
435                         <manifest>
436                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
437                         </manifest>
438                     </archive>
439
440                     <webResources>
441                         <resource>
442                             <directory>src/main/resources</directory>
443                         </resource>
444                     </webResources>
445                 </configuration>
446             </plugin>
447
448             <plugin>
449                 <groupId>org.eclipse.jetty</groupId>
450                 <artifactId>jetty-maven-plugin</artifactId>
451                 <version>${jetty.version}</version>
452                 <configuration>
453                     <webApp>
454                         <contextPath>/</contextPath>
455                         <webInfIncludeJarPattern>.*/.*jersey-[^/]\.jar$</webInfIncludeJarPattern>
456                     </webApp>
457                     <war>${project.build.directory}/${project.build.finalName}.war</war>
458                 </configuration>
459             </plugin>
460
461             <plugin>
462                 <groupId>org.apache.maven.plugins</groupId>
463                 <artifactId>maven-deploy-plugin</artifactId>
464                 <configuration>
465                     <skip>true</skip>
466                 </configuration>
467             </plugin>
468
469             <plugin>
470                 <!-- jcabi (log injection) -->
471                 <groupId>com.jcabi</groupId>
472                 <artifactId>jcabi-maven-plugin</artifactId>
473                 <version>${jcabi.maven.plugin.version}</version>
474                 <dependencies>
475                     <dependency>
476                         <groupId>org.aspectj</groupId>
477                         <artifactId>aspectjtools</artifactId>
478                         <version>${aspectj.version}</version>
479                     </dependency>
480                     <dependency>
481                         <groupId>org.aspectj</groupId>
482                         <artifactId>aspectjweaver</artifactId>
483                         <version>${aspectj.version}</version>
484                     </dependency>
485                 </dependencies>
486                 <executions>
487                     <execution>
488                         <goals>
489                             <goal>ajc</goal>
490                         </goals>
491                     </execution>
492                 </executions>
493             </plugin>
494             <plugin>
495                 <groupId>org.apache.maven.plugins</groupId>
496                 <artifactId>maven-clean-plugin</artifactId>
497                 <executions>
498                     <execution>
499                         <id>clean.catalog.fe.folder</id>
500                         <phase>clean</phase>
501                         <goals>
502                             <goal>clean</goal>
503                         </goals>
504                         <configuration>
505                             <filesets>
506                                 <!-- FE WAR's -->
507                                 <fileset>
508                                     <directory>${project.parent.basedir}/catalog-fe/sdc-frontend/</directory>
509                                     <followSymlinks>false</followSymlinks>
510                                     <includes>
511                                         <include>*.war</include>
512                                     </includes>
513                                 </fileset>
514                             </filesets>
515                         </configuration>
516                     </execution>
517                 </executions>
518             </plugin>
519             <plugin>
520                 <groupId>com.github.sylvainlaurent.maven</groupId>
521                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
522                 <executions>
523                     <execution>
524                         <id>validate</id>
525                         <phase>validate</phase>
526                         <goals>
527                             <goal>validate</goal>
528                         </goals>
529                         <configuration>
530                             <validationSets>
531                                 <validationSet>
532                                     <includes>
533                                         <include>src/main/resources/**/*.y*ml</include>
534                                         <include>src/test/resources/**/*.y*ml</include>
535                                     </includes>
536                                 </validationSet>
537                                 <validationSet>
538                                     <includes>
539                                         <include>src/main/resources/**/*.json</include>
540                                         <include>src/test/resources/**/*.json</include>
541                                     </includes>
542                                 </validationSet>
543                             </validationSets>
544                             <skip>${skipYamlJsonValidator}</skip>
545                         </configuration>
546                     </execution>
547                 </executions>
548             </plugin>
549
550         </plugins>
551
552         <pluginManagement>
553             <plugins>
554                 <!--This plugin's configuration is used to store Eclipse m2e settings
555                   only. It has no influence on the Maven build itself. -->
556                 <plugin>
557                     <groupId>org.eclipse.m2e</groupId>
558                     <artifactId>lifecycle-mapping</artifactId>
559                     <version>1.0.0</version>
560                     <configuration>
561                         <lifecycleMappingMetadata>
562                             <pluginExecutions>
563
564                                 <pluginExecution>
565                                     <pluginExecutionFilter>
566                                         <groupId>com.jcabi</groupId>
567                                         <artifactId>jcabi-maven-plugin</artifactId>
568                                         <versionRange>[0.0,)</versionRange>
569                                         <goals>
570                                             <goal>ajc</goal>
571                                         </goals>
572                                     </pluginExecutionFilter>
573                                     <action>
574                                         <execute/>
575                                     </action>
576                                 </pluginExecution>
577
578                             </pluginExecutions>
579                         </lifecycleMappingMetadata>
580                     </configuration>
581                 </plugin>
582             </plugins>
583         </pluginManagement>
584     </build>
585
586     <profiles>
587         <profile>
588             <id>catalog</id>
589             <activation>
590                 <activeByDefault>false</activeByDefault>
591             </activation>
592
593             <build>
594                 <finalName>${project.artifactId}-${project.version}</finalName>
595             </build>
596         </profile>
597         <profile>
598             <id>docker</id>
599             <activation>
600                 <activeByDefault>false</activeByDefault>
601             </activation>
602             <build>
603                 <plugins>
604                     <plugin>
605                         <groupId>org.apache.maven.plugins</groupId>
606                         <artifactId>maven-resources-plugin</artifactId>
607                         <executions>
608                             <execution>
609                                 <id>copy-resources-fe</id>
610                                 <phase>verify</phase>
611                                 <goals>
612                                     <goal>copy-resources</goal>
613                                 </goals>
614                                 <configuration>
615                                     <outputDirectory>${basedir}/sdc-frontend</outputDirectory>
616                                     <resources>
617                                         <resource>
618                                             <directory>${project.parent.basedir}/catalog-fe/target</directory>
619                                             <includes>
620                                                 <include>catalog-fe-${project.version}.war</include>
621                                             </includes>
622                                         </resource>
623                                         <resource>
624                                             <directory>${project.parent.basedir}/openecomp-ui/target</directory>
625                                             <includes>
626                                                 <include>onboarding-fe-${project.version}.war</include>
627                                             </includes>
628                                         </resource>
629                                     </resources>
630                                 </configuration>
631                             </execution>
632                         </executions>
633                     </plugin>
634                     <plugin>
635                         <groupId>io.fabric8</groupId>
636                         <artifactId>docker-maven-plugin</artifactId>
637                         <configuration>
638                             <verbose>${verbose}</verbose>
639                             <apiVersion>${docker.api.version}</apiVersion>
640                             <registry>${docker.registry}</registry>
641                             <authConfig>
642                                 <pull>
643                                     <username>${docker.username}</username>
644                                     <password>${docker.password}</password>
645                                 </pull>
646                             </authConfig>
647                             <images>
648
649                                 <!-- Build frontend image -->
650                                 <image>
651                                     <name>${docker.namespace}/sdc-frontend</name>
652                                     <alias>sdc-frontend</alias>
653                                     <build>
654                                         <cleanup>try</cleanup>
655                                         <dockerFileDir>${project.basedir}/sdc-frontend</dockerFileDir>
656                                         <tags>
657                                             <tag>latest</tag>
658                                             <tag>
659                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
660                                             </tag>
661                                             <tag>
662                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp}
663                                             </tag>
664                                         </tags>
665                                     </build>
666                                 </image>
667                             </images>
668                         </configuration>
669                         <executions>
670                             <execution>
671                                 <id>clean-images</id>
672                                 <phase>pre-clean</phase>
673                                 <goals>
674                                     <goal>remove</goal>
675                                 </goals>
676                                 <configuration>
677                                     <removeAll>true</removeAll>
678                                     <image>${docker.namespace}/sdc-frontend</image>
679                                 </configuration>
680                             </execution>
681
682                             <execution>
683                                 <id>generate-images</id>
684                                 <phase>install</phase>
685                                 <goals>
686                                     <goal>build</goal>
687                                 </goals>
688                             </execution>
689
690                             <execution>
691                                 <id>push-images</id>
692                                 <phase>deploy</phase>
693                                 <goals>
694                                     <goal>push</goal>
695                                 </goals>
696                                 <configuration>
697                                     <image>${docker.namespace}/sdc-frontend</image>
698                                 </configuration>
699                             </execution>
700                         </executions>
701                     </plugin>
702                 </plugins>
703             </build>
704         </profile>
705     </profiles>
706
707 </project>