blob: 152b880136bcd4d86a68a1a32cbedef965efed0e [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Landoed64b5e2017-06-09 03:19:04 +03002 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 +02003
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>
Michael Landoebd7c8f2017-03-15 20:38:00 +020011 <version>1.1.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
13
Michael Landoed64b5e2017-06-09 03:19:04 +030014
ig6133142d2e62017-04-02 17:14:00 +030015 <properties>
ig6133538b8262017-04-06 12:50:11 +030016 <docker.tag>${project.version}-${maven.build.timestamp}</docker.tag>
17 <docker.latest.tag>${project.version}-latest</docker.latest.tag>
ig6133142d2e62017-04-02 17:14:00 +030018 </properties>
Michael Lando451a3402017-02-19 10:28:42 +020019
Michael Lando9dd269d2017-02-20 01:04:22 +020020 <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>
Michael Lando451a3402017-02-19 10:28:42 +020051 </build>
Michael Lando9dd269d2017-02-20 01:04:22 +020052
53 <profiles>
54 <profile>
ig6133142d2e62017-04-02 17:14:00 +030055 <id>docker-staging</id>
56 <properties>
ig61330f572ce2017-04-06 10:48:50 +030057 <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag>
58 <docker.latest.tag>${project.version}-STAGING-latest</docker.latest.tag>
ig6133142d2e62017-04-02 17:14:00 +030059 </properties>
60 </profile>
Michael Landoed64b5e2017-06-09 03:19:04 +030061
ig6133142d2e62017-04-02 17:14:00 +030062 <profile>
Michael Lando9dd269d2017-02-20 01:04:22 +020063 <id>docker</id>
Michael Landoed64b5e2017-06-09 03:19:04 +030064 <activation>
65 <activeByDefault>false</activeByDefault>
66 </activation>
Michael Lando9dd269d2017-02-20 01:04:22 +020067 <build>
68 <plugins>
69 <plugin>
70 <artifactId>maven-resources-plugin</artifactId>
71 <version>3.0.2</version>
72 <executions>
73 <execution>
Tal Gitelman68ccc452017-06-22 18:23:07 +030074 <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>
Michael Lando9dd269d2017-02-20 01:04:22 +020092 <id>copy-resources-be</id>
Michael Lando9dd269d2017-02-20 01:04:22 +020093 <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>
Michael Landoed64b5e2017-06-09 03:19:04 +0300103 <include>onboarding-be-${project.version}.war</include>
Michael Lando9dd269d2017-02-20 01:04:22 +0200104 </includes>
105 </resource>
106 </resources>
107 </configuration>
108 </execution>
109 <execution>
110 <id>copy-resources-fe</id>
Grinberg Motic3bda482017-02-23 11:24:34 +0200111 <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>
Michael Lando9dd269d2017-02-20 01:04:22 +0200127 </executions>
128 </plugin>
129
130
131
132 <plugin>
133 <groupId>io.fabric8</groupId>
134 <artifactId>docker-maven-plugin</artifactId>
Michael Lando9dc57092017-02-20 23:46:47 +0200135 <version>0.19.1</version>
Michael Lando9dd269d2017-02-20 01:04:22 +0200136
137 <configuration>
138 <verbose>true</verbose>
139 <apiVersion>1.23</apiVersion>
140
141 <images>
142
143 <!-- Build backend image -->
144 <image>
ig61330f572ce2017-04-06 10:48:50 +0300145 <name>openecomp/sdc-backend</name>
Michael Lando9dd269d2017-02-20 01:04:22 +0200146 <alias>sdc-backend</alias>
147 <build>
148 <cleanup>try</cleanup>
Michael Lando9dc57092017-02-20 23:46:47 +0200149 <dockerFileDir>${project.basedir}/sdc-backend</dockerFileDir>
ig6133142d2e62017-04-02 17:14:00 +0300150 <tags>
151 <tag>${docker.tag}</tag>
ig61330f572ce2017-04-06 10:48:50 +0300152 <tag>${docker.latest.tag}</tag>
Michael Lando41c98602017-06-09 07:38:13 +0300153 <tag>1.1-STAGING-latest</tag>
ig6133142d2e62017-04-02 17:14:00 +0300154 </tags>
Michael Lando9dd269d2017-02-20 01:04:22 +0200155 </build>
156 </image>
157
158 <!-- Build frontend image -->
159 <image>
ig61330f572ce2017-04-06 10:48:50 +0300160 <name>openecomp/sdc-frontend</name>
Michael Lando9dd269d2017-02-20 01:04:22 +0200161 <alias>sdc-frontend</alias>
162 <build>
163 <cleanup>try</cleanup>
Michael Lando9dc57092017-02-20 23:46:47 +0200164 <dockerFileDir>${project.basedir}/sdc-frontend</dockerFileDir>
ig6133142d2e62017-04-02 17:14:00 +0300165 <tags>
166 <tag>${docker.tag}</tag>
ig61330f572ce2017-04-06 10:48:50 +0300167 <tag>${docker.latest.tag}</tag>
Michael Lando41c98602017-06-09 07:38:13 +0300168 <tag>1.1-STAGING-latest</tag>
ig6133142d2e62017-04-02 17:14:00 +0300169 </tags>
Michael Lando9dd269d2017-02-20 01:04:22 +0200170 </build>
171 </image>
172
173 <!-- Build elastic search image -->
Michael Lando36771962017-03-01 10:05:34 +0200174 <image>
ig61330f572ce2017-04-06 10:48:50 +0300175 <name>openecomp/sdc-elasticsearch</name>
Michael Lando9dd269d2017-02-20 01:04:22 +0200176 <alias>sdc-elasticsearch</alias>
177 <build>
178 <cleanup>try</cleanup>
Michael Lando9dc57092017-02-20 23:46:47 +0200179 <dockerFileDir>${project.basedir}/sdc-elasticsearch</dockerFileDir>
ig6133142d2e62017-04-02 17:14:00 +0300180 <tags>
181 <tag>${docker.tag}</tag>
ig61330f572ce2017-04-06 10:48:50 +0300182 <tag>${docker.latest.tag}</tag>
Michael Lando41c98602017-06-09 07:38:13 +0300183 <tag>1.1-STAGING-latest</tag>
ig6133142d2e62017-04-02 17:14:00 +0300184 </tags>
Michael Lando9dd269d2017-02-20 01:04:22 +0200185 </build>
Michael Lando36771962017-03-01 10:05:34 +0200186 </image>
Michael Lando9dd269d2017-02-20 01:04:22 +0200187
188 <!-- Build kibana image -->
189 <image>
ig61330f572ce2017-04-06 10:48:50 +0300190 <name>openecomp/sdc-kibana</name>
Michael Lando9dd269d2017-02-20 01:04:22 +0200191 <alias>sdc-kibana</alias>
192 <build>
193 <cleanup>try</cleanup>
Michael Lando9dc57092017-02-20 23:46:47 +0200194 <dockerFileDir>${project.basedir}/sdc-kibana</dockerFileDir>
ig6133142d2e62017-04-02 17:14:00 +0300195 <tags>
196 <tag>${docker.tag}</tag>
ig61330f572ce2017-04-06 10:48:50 +0300197 <tag>${docker.latest.tag}</tag>
Michael Lando41c98602017-06-09 07:38:13 +0300198 <tag>1.1-STAGING-latest</tag>
ig6133142d2e62017-04-02 17:14:00 +0300199 </tags>
Michael Lando9dd269d2017-02-20 01:04:22 +0200200 </build>
201 </image>
202
David Greenberg3d35bb32017-02-20 19:00:11 +0200203 <!-- Build cassandra image -->
Michael Lando9dd269d2017-02-20 01:04:22 +0200204 <image>
ig61330f572ce2017-04-06 10:48:50 +0300205 <name>openecomp/sdc-cassandra</name>
Michael Lando9dd269d2017-02-20 01:04:22 +0200206 <alias>sdc-cassandra</alias>
207 <build>
208 <cleanup>try</cleanup>
Michael Lando9dc57092017-02-20 23:46:47 +0200209 <dockerFileDir>${project.basedir}/sdc-cassandra</dockerFileDir>
ig6133142d2e62017-04-02 17:14:00 +0300210 <tags>
211 <tag>${docker.tag}</tag>
ig61330f572ce2017-04-06 10:48:50 +0300212 <tag>${docker.latest.tag}</tag>
Michael Lando41c98602017-06-09 07:38:13 +0300213 <tag>1.1-STAGING-latest</tag>
ig6133142d2e62017-04-02 17:14:00 +0300214 </tags>
Michael Lando9dd269d2017-02-20 01:04:22 +0200215 </build>
216 </image>
Michael Landoed64b5e2017-06-09 03:19:04 +0300217
Grinberg Motic3bda482017-02-23 11:24:34 +0200218 <!-- Build sanity image -->
219 <image>
ig61330f572ce2017-04-06 10:48:50 +0300220 <name>openecomp/sdc-sanity</name>
Grinberg Motic3bda482017-02-23 11:24:34 +0200221 <alias>sdc-sanity</alias>
222 <build>
223 <cleanup>try</cleanup>
224 <dockerFileDir>${project.basedir}/sdc-sanity</dockerFileDir>
ig6133142d2e62017-04-02 17:14:00 +0300225 <tags>
226 <tag>${docker.tag}</tag>
ig61330f572ce2017-04-06 10:48:50 +0300227 <tag>${docker.latest.tag}</tag>
Michael Lando41c98602017-06-09 07:38:13 +0300228 <tag>1.1-STAGING-latest</tag>
ig6133142d2e62017-04-02 17:14:00 +0300229 </tags>
Grinberg Motic3bda482017-02-23 11:24:34 +0200230 </build>
231 </image>
Michael Lando9dd269d2017-02-20 01:04:22 +0200232
233 </images>
234 </configuration>
235 <executions>
236 <execution>
Michael Landoed64b5e2017-06-09 03:19:04 +0300237 <id>clean-images</id>
238 <phase>pre-clean</phase>
239 <goals>
240 <goal>remove</goal>
241 </goals>
242 <configuration>
243 <removeAll>true</removeAll>
Michael Landob3d48982017-06-11 14:22:02 +0300244 <image>openecomp/sdc-backend,openecomp/sdc-frontend,openecomp/sdc-elasticsearch,openecomp/sdc-kibana,openecomp/sdc-sanity</image>
Michael Landoed64b5e2017-06-09 03:19:04 +0300245 </configuration>
Michael Lando9dd269d2017-02-20 01:04:22 +0200246 </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>
Michael Landoed64b5e2017-06-09 03:19:04 +0300257 <id>push-images</id>
258 <phase>deploy</phase>
259 <goals>
260 <goal>build</goal>
ml636ra90804d2017-02-22 15:50:20 +0200261 <goal>push</goal>
Michael Landoed64b5e2017-06-09 03:19:04 +0300262 </goals>
263 <configuration>
Michael Landob3d48982017-06-11 14:22:02 +0300264 <image>openecomp/sdc-backend,openecomp/sdc-frontend,openecomp/sdc-elasticsearch,openecomp/sdc-kibana,openecomp/sdc-sanity</image>
Michael Landoed64b5e2017-06-09 03:19:04 +0300265 </configuration>
Michael Lando9dd269d2017-02-20 01:04:22 +0200266 </execution>
267 </executions>
Michael Lando9dd269d2017-02-20 01:04:22 +0200268 </plugin>
Michael Lando9dd269d2017-02-20 01:04:22 +0200269 </plugins>
270 </build>
271 </profile>
272 </profiles>
Michael Lando451a3402017-02-19 10:28:42 +0200273</project>