[SDC-29] rebase continue work to align source
[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-be</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/api/openecomp-sdc-rest-webapp/onboarding-rest-war/target</directory>
84                                                                                         <includes>
85                                                                                                 <include>onboarding-be-${project.version}.war</include>
86                                                                                         </includes>
87                                                                                 </resource>
88                                                                         </resources>
89                                                                 </configuration>
90                                                         </execution>
91                                                         <execution>
92                                                                 <id>copy-resources-fe</id>
93                                                                 <phase>validate</phase>
94                                                                 <goals>
95                                                                         <goal>copy-resources</goal>
96                                                                 </goals>
97                                                                 <configuration>
98                                                                         <outputDirectory>${basedir}/sdc-frontend</outputDirectory>
99                                                                         <resources>
100                                                                                 <resource>
101                                                                                         <directory>${project.parent.basedir}/openecomp-ui/target</directory>
102                                                                                         <includes>
103                                                                                                 <include>onboarding-fe-${project.version}.war</include>
104                                                                                         </includes>
105                                                                                 </resource>
106                                                                         </resources>
107                                                                 </configuration>
108                                                         </execution>
109                                                 </executions>
110                                         </plugin>
111
112
113
114                                         <plugin>
115                                                 <groupId>io.fabric8</groupId>
116                                                 <artifactId>docker-maven-plugin</artifactId>
117                                                 <version>0.19.1</version>
118
119                                                 <configuration>
120                                                         <verbose>true</verbose>
121                                                         <apiVersion>1.23</apiVersion>
122
123                                                         <images>
124
125                                                                 <!-- Build backend image -->
126                                                                 <image>
127                                                                         <name>openecomp/sdc-backend</name>
128                                                                         <alias>sdc-backend</alias>
129                                                                         <build>
130                                                                                 <cleanup>try</cleanup>
131                                                                                 <dockerFileDir>${project.basedir}/sdc-backend</dockerFileDir>
132                                                                                 <tags>
133                                                                                         <tag>${docker.tag}</tag>
134                                                                                         <tag>${docker.latest.tag}</tag>
135                                                                                         <tag>1.1-STAGING-latest</tag>
136                                                                                 </tags>
137                                                                         </build>
138                                                                 </image>
139
140                                                                 <!-- Build frontend image -->
141                                                                 <image>
142                                                                         <name>openecomp/sdc-frontend</name>
143                                                                         <alias>sdc-frontend</alias>
144                                                                         <build>
145                                                                                 <cleanup>try</cleanup>
146                                                                                 <dockerFileDir>${project.basedir}/sdc-frontend</dockerFileDir>
147                                                                                 <tags>
148                                                                                         <tag>${docker.tag}</tag>
149                                                                                         <tag>${docker.latest.tag}</tag>
150                                                                                         <tag>1.1-STAGING-latest</tag>
151                                                                                 </tags>
152                                                                         </build>
153                                                                 </image>
154
155                                                                 <!-- Build elastic search image -->
156                                                                 <image>
157                                                                         <name>openecomp/sdc-elasticsearch</name>
158                                                                         <alias>sdc-elasticsearch</alias>
159                                                                         <build>
160                                                                                 <cleanup>try</cleanup>
161                                                                                 <dockerFileDir>${project.basedir}/sdc-elasticsearch</dockerFileDir>
162                                                                                 <tags>
163                                                                                         <tag>${docker.tag}</tag>
164                                                                                         <tag>${docker.latest.tag}</tag>
165                                                                                         <tag>1.1-STAGING-latest</tag>
166                                                                                 </tags>
167                                                                         </build>
168                                                                 </image>
169
170                                                                 <!-- Build kibana image -->
171                                                                 <image>
172                                                                         <name>openecomp/sdc-kibana</name>
173                                                                         <alias>sdc-kibana</alias>
174                                                                         <build>
175                                                                                 <cleanup>try</cleanup>
176                                                                                 <dockerFileDir>${project.basedir}/sdc-kibana</dockerFileDir>
177                                                                                 <tags>
178                                                                                         <tag>${docker.tag}</tag>
179                                                                                         <tag>${docker.latest.tag}</tag>
180                                                                                         <tag>1.1-STAGING-latest</tag>
181                                                                                 </tags>
182                                                                         </build>
183                                                                 </image>
184
185                                                                 <!-- Build cassandra image -->
186                                                                 <image>
187                                                                         <name>openecomp/sdc-cassandra</name>
188                                                                         <alias>sdc-cassandra</alias>
189                                                                         <build>
190                                                                                 <cleanup>try</cleanup>
191                                                                                 <dockerFileDir>${project.basedir}/sdc-cassandra</dockerFileDir>
192                                                                                 <tags>
193                                                                                         <tag>${docker.tag}</tag>
194                                                                                         <tag>${docker.latest.tag}</tag>
195                                                                                         <tag>1.1-STAGING-latest</tag>
196                                                                                 </tags>
197                                                                         </build>
198                                                                 </image>
199
200                                                                 <!-- Build sanity image -->
201                                                                 <image>
202                                                                         <name>openecomp/sdc-sanity</name>
203                                                                         <alias>sdc-sanity</alias>
204                                                                         <build>
205                                                                                 <cleanup>try</cleanup>
206                                                                                 <dockerFileDir>${project.basedir}/sdc-sanity</dockerFileDir>
207                                                                                 <tags>
208                                                                                         <tag>${docker.tag}</tag>
209                                                                                         <tag>${docker.latest.tag}</tag>
210                                                                                         <tag>1.1-STAGING-latest</tag>
211                                                                                 </tags>
212                                                                         </build>
213                                                                 </image>
214
215                                                         </images>
216                                                 </configuration>
217                                                 <executions>
218                                                         <execution>
219                                 <id>clean-images</id>
220                                 <phase>pre-clean</phase>
221                                 <goals>
222                                 <goal>remove</goal>
223                                 </goals>
224                                 <configuration>
225                                 <removeAll>true</removeAll>
226                                 <image>openecomp/sdc-backend,openecomp/sdc-frontend,openecomp/sdc-elasticsearch,openecomp/sdc-kibana,openecomp/sdc-sanity</image>
227                                 </configuration>
228                                                         </execution>
229
230                                                         <execution>
231                                                                 <id>generate-images</id>
232                                                                 <phase>package</phase>
233                                                                 <goals>
234                                                                         <goal>build</goal>
235                                                                 </goals>
236                                                         </execution>
237
238                                                         <execution>
239                                 <id>push-images</id>
240                                 <phase>deploy</phase>
241                                 <goals>
242                                                                         <goal>build</goal>
243                                                                         <goal>push</goal>
244                                 </goals>
245                                 <configuration>
246                                 <image>openecomp/sdc-backend,openecomp/sdc-frontend,openecomp/sdc-elasticsearch,openecomp/sdc-kibana,openecomp/sdc-sanity</image>
247                                 </configuration>
248                                                         </execution>
249                                                 </executions>
250                                         </plugin>
251                                 </plugins>
252                         </build>
253                 </profile>
254         </profiles>
255 </project>