blob: f8d4e3f70c4ef008b89aeb2dca50459e8f6855f9 [file] [log] [blame]
vasrazf1f5a352019-11-26 17:20:27 +00001<project xmlns="http://maven.apache.org/POM/4.0.0"
ys969316a9fce2020-01-19 13:50:02 +02002 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Lando451a3402017-02-19 10:28:42 +02004
ys969316a9fce2020-01-19 13:50:02 +02005 <modelVersion>4.0.0</modelVersion>
Michael Lando451a3402017-02-19 10:28:42 +02006
ys969316a9fce2020-01-19 13:50:02 +02007 <artifactId>catalog-ui</artifactId>
8 <packaging>pom</packaging>
Michael Lando451a3402017-02-19 10:28:42 +02009
ys969316a9fce2020-01-19 13:50:02 +020010 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>sdc-main</artifactId>
Ofir Sonsino09d87892020-03-12 20:52:42 +020013 <version>1.7.0-SNAPSHOT</version>
ys969316a9fce2020-01-19 13:50:02 +020014 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020015
andre.schmid4a4d45f2020-03-06 14:42:45 +000016 <properties>
17 <sonar.nodejs.executable>${project.basedir}/node/node</sonar.nodejs.executable>
18 <sonar.sources>src/app/ng2</sonar.sources>
19 </properties>
20
ys969316a9fce2020-01-19 13:50:02 +020021 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-clean-plugin</artifactId>
26 <executions>
27 <execution>
28 <id>clean.fe.webapp.folder</id>
29 <phase>initialize</phase>
30 <goals>
31 <goal>clean</goal>
32 </goals>
33 <configuration>
ys969316a9fce2020-01-19 13:50:02 +020034 <filesets>
35 <fileset>
36 <directory>${project.parent.basedir}/catalog-fe/src/main/webapp</directory>
37 <includes>
38 <include>**/*</include>
39 <include>*</include>
40 </includes>
41 <excludes>
42 <exclude>META-INF/*</exclude>
43 <exclude>WEB-INF/*</exclude>
44 </excludes>
45 <followSymlinks>false</followSymlinks>
46 </fileset>
47 </filesets>
48 </configuration>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-resources-plugin</artifactId>
55 <executions>
56 <execution>
57 <id>copy-resources</id>
58 <phase>package</phase>
59 <goals>
60 <goal>copy-resources</goal>
61 </goals>
62 <configuration>
63 <outputDirectory>${project.parent.basedir}/catalog-fe/src/main/webapp
64 </outputDirectory>
65 <resources>
66 <resource>
67 <directory>${project.basedir}/dist</directory>
68 <filtering>false</filtering>
69 </resource>
70 </resources>
71 </configuration>
72 </execution>
73 </executions>
74 </plugin>
75 <plugin>
76 <groupId>com.github.eirslett</groupId>
77 <artifactId>frontend-maven-plugin</artifactId>
78 <configuration>
andre.schmid4a4d45f2020-03-06 14:42:45 +000079 <installDirectory>${project.basedir}</installDirectory>
ys969316a9fce2020-01-19 13:50:02 +020080 </configuration>
Michael Lando451a3402017-02-19 10:28:42 +020081
ys969316a9fce2020-01-19 13:50:02 +020082 <executions>
83 <execution>
84 <id>install node and npm</id>
85 <goals>
86 <goal>install-node-and-npm</goal>
87 </goals>
88 <configuration>
89 <!-- See https://nodejs.org/en/download/ for latest node and npm (lts) versions -->
90 <nodeVersion>v10.17.0</nodeVersion>
91 <npmVersion>6.11.3</npmVersion>
92 </configuration>
93 </execution>
Michael Lando451a3402017-02-19 10:28:42 +020094
ys969316a9fce2020-01-19 13:50:02 +020095 <execution>
96 <id>npm set progress off</id>
97 <goals>
98 <goal>npm</goal>
99 </goals>
100 <configuration>
101 <arguments>set progress=false</arguments>
102 </configuration>
103 </execution>
Michael Lando451a3402017-02-19 10:28:42 +0200104
ys969316a9fce2020-01-19 13:50:02 +0200105 <execution>
106 <id>npm install</id>
107 <goals>
108 <goal>npm</goal>
109 </goals>
110 <!-- Optional configuration which provides for running any npm command -->
111 <configuration>
112 <arguments>install --registry ${npm.registry}</arguments>
113 </configuration>
114 </execution>
ml636r0649e652017-02-20 21:10:54 +0200115
ys969316a9fce2020-01-19 13:50:02 +0200116 <execution>
117 <id>npm run build</id>
118 <goals>
119 <goal>npm</goal>
120 </goals>
121 <configuration>
122 <arguments>run build:prod</arguments>
123 </configuration>
124 </execution>
andre.schmid4a4d45f2020-03-06 14:42:45 +0000125
126 <execution>
127 <id>npm_test</id>
128 <goals>
129 <goal>npm</goal>
130 </goals>
131 <phase>test</phase>
132 <configuration>
133 <arguments>test</arguments>
134 <skip>${skipTests}</skip>
135 </configuration>
136 </execution>
ys969316a9fce2020-01-19 13:50:02 +0200137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>com.github.sylvainlaurent.maven</groupId>
141 <artifactId>yaml-json-validator-maven-plugin</artifactId>
142 <executions>
143 <execution>
144 <id>validate</id>
145 <phase>validate</phase>
146 <goals>
147 <goal>validate</goal>
148 </goals>
149 <configuration>
150 <validationSets>
151 <validationSet>
152 <includes>
153 <include>src/main/resources/**/*.y*ml</include>
154 <include>src/test/resources/**/*.y*ml</include>
155 </includes>
156 </validationSet>
157 <validationSet>
158 <includes>
159 <include>src/main/resources/**/*.json</include>
160 <include>src/test/resources/**/*.json</include>
161 </includes>
162 </validationSet>
163 </validationSets>
164 </configuration>
165 </execution>
166 </executions>
167 </plugin>
Michael Lando75aacbb2017-07-17 21:12:03 +0300168
ys969316a9fce2020-01-19 13:50:02 +0200169 </plugins>
170 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200171</project>