[sdc] - latest code changes
[sdc.git] / sdc-os-chef / pom.xml
1 <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
4         <modelVersion>4.0.0</modelVersion>
5
6         <artifactId>sdc-os-chef</artifactId>
7
8         <parent>
9                 <groupId>org.openecomp.sdc</groupId>
10                 <artifactId>sdc-main</artifactId>
11                 <version>1.1.0-SNAPSHOT</version>
12         </parent>
13
14
15         <properties>
16                 <docker.tag>${project.version}-${maven.build.timestamp}</docker.tag>
17                 <docker.latest.tag>${project.version}-latest</docker.latest.tag>
18         </properties>
19
20         <build>
21                 <plugins>
22                         <plugin>
23                                 <groupId>com.google.code.maven-replacer-plugin</groupId>
24                                 <artifactId>replacer</artifactId>
25                                 <version>1.5.3</version>
26                                 <executions>
27                                         <execution>
28                                                 <phase>prepare-package</phase>
29                                                 <goals>
30                                                         <goal>replace</goal>
31                                                 </goals>
32                                         </execution>
33                                 </executions>
34
35                                 <configuration>
36                                         <basedir>${project.basedir}</basedir>
37                                         <includes>
38                                                 <include>sdc-backend/Dockerfile</include>
39                                                 <include>sdc-frontend/Dockerfile</include>
40                                                 <include>scripts/docker_run.sh</include>
41                                         </includes>
42                                         <replacements>
43                                                 <replacement>
44                                                         <token>__SDC-RELEASE__</token>
45                                                         <value>${project.version}</value>
46                                                 </replacement>
47                                         </replacements>
48                                 </configuration>
49                         </plugin>
50                 </plugins>
51         </build>
52
53         <profiles>
54                 <profile>
55                         <id>docker-staging</id>
56                         <properties>
57                                 <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag>
58                                 <docker.latest.tag>${project.version}-STAGING-latest</docker.latest.tag>
59                         </properties>
60                 </profile>
61
62                 <profile>
63                         <id>docker</id>
64                         <activation>
65                                 <activeByDefault>false</activeByDefault>
66                         </activation>
67                         <build>
68                                 <plugins>
69                                         <plugin>
70                                                 <artifactId>maven-resources-plugin</artifactId>
71                                                 <version>3.0.2</version>
72                                                 <executions>
73                                                         <execution>
74                                                                 <id>copy-resources-apidocs</id>
75                                                                 <phase>validate</phase>
76                                                                 <goals>
77                                                                         <goal>copy-resources</goal>
78                                                                 </goals>
79                                                                 <configuration>
80                                                                         <outputDirectory>${basedir}/sdc-backend</outputDirectory>
81                                                                         <resources>
82                                                                                 <resource>
83                                                                                         <directory>${project.parent.basedir}/openecomp-be/tools/swagger-ui/api-docs</directory>
84                                                                                         <includes>
85                                                                                                 <include>api-docs.war</include>
86                                                                                         </includes>
87                                                                                 </resource>
88                                                                         </resources>
89                                                                 </configuration>
90                                                         </execution>
91                                                         <execution>
92                                                                 <id>copy-resources-be</id>
93                                                                 <phase>validate</phase>
94                                                                 <goals>
95                                                                         <goal>copy-resources</goal>
96                                                                 </goals>
97                                                                 <configuration>
98                                                                         <outputDirectory>${basedir}/sdc-backend</outputDirectory>
99                                                                         <resources>
100                                                                                 <resource>
101                                                                                         <directory>${project.parent.basedir}/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/target</directory>
102                                                                                         <includes>
103                                                                                                 <include>onboarding-be-${project.version}.war</include>
104                                                                                         </includes>
105                                                                                 </resource>
106                                                                         </resources>
107                                                                 </configuration>
108                                                         </execution>
109                                                         <execution>
110                                                                 <id>copy-resources-fe</id>
111                                                                 <phase>validate</phase>
112                                                                 <goals>
113                                                                         <goal>copy-resources</goal>
114                                                                 </goals>
115                                                                 <configuration>
116                                                                         <outputDirectory>${basedir}/sdc-frontend</outputDirectory>
117                                                                         <resources>
118                                                                                 <resource>
119                                                                                         <directory>${project.parent.basedir}/openecomp-ui/target</directory>
120                                                                                         <includes>
121                                                                                                 <include>onboarding-fe-${project.version}.war</include>
122                                                                                         </includes>
123                                                                                 </resource>
124                                                                         </resources>
125                                                                 </configuration>
126                                                         </execution>
127                                                 </executions>
128                                         </plugin>
129
130
131
132                                         <plugin>
133                                                 <groupId>io.fabric8</groupId>
134                                                 <artifactId>docker-maven-plugin</artifactId>
135                                                 <version>0.19.1</version>
136
137                                                 <configuration>
138                                                         <verbose>true</verbose>
139                                                         <apiVersion>1.23</apiVersion>
140
141                                                         <images>
142
143                                                                 <!-- Build backend image -->
144                                                                 <image>
145                                                                         <name>openecomp/sdc-backend</name>
146                                                                         <alias>sdc-backend</alias>
147                                                                         <build>
148                                                                                 <cleanup>try</cleanup>
149                                                                                 <dockerFileDir>${project.basedir}/sdc-backend</dockerFileDir>
150                                                                                 <tags>
151                                                                                         <tag>${docker.tag}</tag>
152                                                                                         <tag>${docker.latest.tag}</tag>
153                                                                                         <tag>1.1-STAGING-latest</tag>
154                                                                                 </tags>
155                                                                         </build>
156                                                                 </image>
157
158                                                                 <!-- Build frontend image -->
159                                                                 <image>
160                                                                         <name>openecomp/sdc-frontend</name>
161                                                                         <alias>sdc-frontend</alias>
162                                                                         <build>
163                                                                                 <cleanup>try</cleanup>
164                                                                                 <dockerFileDir>${project.basedir}/sdc-frontend</dockerFileDir>
165                                                                                 <tags>
166                                                                                         <tag>${docker.tag}</tag>
167                                                                                         <tag>${docker.latest.tag}</tag>
168                                                                                         <tag>1.1-STAGING-latest</tag>
169                                                                                 </tags>
170                                                                         </build>
171                                                                 </image>
172
173                                                                 <!-- Build elastic search image -->
174                                                                 <image>
175                                                                         <name>openecomp/sdc-elasticsearch</name>
176                                                                         <alias>sdc-elasticsearch</alias>
177                                                                         <build>
178                                                                                 <cleanup>try</cleanup>
179                                                                                 <dockerFileDir>${project.basedir}/sdc-elasticsearch</dockerFileDir>
180                                                                                 <tags>
181                                                                                         <tag>${docker.tag}</tag>
182                                                                                         <tag>${docker.latest.tag}</tag>
183                                                                                         <tag>1.1-STAGING-latest</tag>
184                                                                                 </tags>
185                                                                         </build>
186                                                                 </image>
187
188                                                                 <!-- Build kibana image -->
189                                                                 <image>
190                                                                         <name>openecomp/sdc-kibana</name>
191                                                                         <alias>sdc-kibana</alias>
192                                                                         <build>
193                                                                                 <cleanup>try</cleanup>
194                                                                                 <dockerFileDir>${project.basedir}/sdc-kibana</dockerFileDir>
195                                                                                 <tags>
196                                                                                         <tag>${docker.tag}</tag>
197                                                                                         <tag>${docker.latest.tag}</tag>
198                                                                                         <tag>1.1-STAGING-latest</tag>
199                                                                                 </tags>
200                                                                         </build>
201                                                                 </image>
202
203                                                                 <!-- Build cassandra image -->
204                                                                 <image>
205                                                                         <name>openecomp/sdc-cassandra</name>
206                                                                         <alias>sdc-cassandra</alias>
207                                                                         <build>
208                                                                                 <cleanup>try</cleanup>
209                                                                                 <dockerFileDir>${project.basedir}/sdc-cassandra</dockerFileDir>
210                                                                                 <tags>
211                                                                                         <tag>${docker.tag}</tag>
212                                                                                         <tag>${docker.latest.tag}</tag>
213                                                                                         <tag>1.1-STAGING-latest</tag>
214                                                                                 </tags>
215                                                                         </build>
216                                                                 </image>
217
218                                                                 <!-- Build sanity image -->
219                                                                 <image>
220                                                                         <name>openecomp/sdc-sanity</name>
221                                                                         <alias>sdc-sanity</alias>
222                                                                         <build>
223                                                                                 <cleanup>try</cleanup>
224                                                                                 <dockerFileDir>${project.basedir}/sdc-sanity</dockerFileDir>
225                                                                                 <tags>
226                                                                                         <tag>${docker.tag}</tag>
227                                                                                         <tag>${docker.latest.tag}</tag>
228                                                                                         <tag>1.1-STAGING-latest</tag>
229                                                                                 </tags>
230                                                                         </build>
231                                                                 </image>
232
233                                                         </images>
234                                                 </configuration>
235                                                 <executions>
236                                                         <execution>
237                                 <id>clean-images</id>
238                                 <phase>pre-clean</phase>
239                                 <goals>
240                                 <goal>remove</goal>
241                                 </goals>
242                                 <configuration>
243                                 <removeAll>true</removeAll>
244                                 <image>openecomp/sdc-backend,openecomp/sdc-frontend,openecomp/sdc-elasticsearch,openecomp/sdc-kibana,openecomp/sdc-sanity</image>
245                                 </configuration>
246                                                         </execution>
247
248                                                         <execution>
249                                                                 <id>generate-images</id>
250                                                                 <phase>package</phase>
251                                                                 <goals>
252                                                                         <goal>build</goal>
253                                                                 </goals>
254                                                         </execution>
255
256                                                         <execution>
257                                 <id>push-images</id>
258                                 <phase>deploy</phase>
259                                 <goals>
260                                                                         <goal>build</goal>
261                                                                         <goal>push</goal>
262                                 </goals>
263                                 <configuration>
264                                 <image>openecomp/sdc-backend,openecomp/sdc-frontend,openecomp/sdc-elasticsearch,openecomp/sdc-kibana,openecomp/sdc-sanity</image>
265                                 </configuration>
266                                                         </execution>
267                                                 </executions>
268                                         </plugin>
269                                 </plugins>
270                         </build>
271                 </profile>
272         </profiles>
273 </project>