blob: 9a927ac30c2f0b44ac7b0b706d15de3727785f0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>sdc.att.app</groupId>
<artifactId>sdc_docker_baseline</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<name>sdc_docker_baseline</name>
<url>http://maven.apache.org</url>
<properties>
<!--nexus-->
<nexus.proxy>https://nexus.onap.org</nexus.proxy>
<sitePath>/content/sites/site/org/openecomp/sdc/${project.version}</sitePath>
<staging.profile.id>176c31dfe190a</staging.profile.id>
<!--maven-->
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyy.MM.dd.HH.mm</maven.build.timestamp.format>
<!--docker-->
<docker.tag>${project.version}-${timestamp}</docker.tag>
<docker.latest.tag>${project.version}-latest</docker.latest.tag>
</properties>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.15.1</version>
<configuration>
<images>
<!-- base_sdc-backend -->
<image>
<name>openecomp/base_sdc-backend</name>
<alias>base_sdc-backend</alias>
<build>
<cleanup>true</cleanup>
<tags>
<tag>${docker.tag}</tag>
<tag>${docker.latest.tag}</tag>
</tags>
<dockerFileDir>${project.basedir}/base_sdc-backend</dockerFileDir>
</build>
</image>
<!-- base_sdc-frontend -->
<image>
<name>openecomp/base_sdc-frontend</name>
<alias>base_sdc-frontendt</alias>
<build>
<cleanup>true</cleanup>
<tags>
<tag>${docker.tag}</tag>
<tag>${docker.latest.tag}</tag>
</tags>
<dockerFileDir>${project.basedir}/base_sdc-frontend</dockerFileDir>
</build>
</image>
<!-- base_sdc-frontend -->
<image>
<name>openecomp/base_sdc-kibana</name>
<alias>base_sdc-kibana</alias>
<build>
<cleanup>true</cleanup>
<tags>
<tag>${docker.tag}</tag>
<tag>${docker.latest.tag}</tag>
</tags>
<dockerFileDir>${project.basedir}/base_sdc-kibana</dockerFileDir>
</build>
</image>
<!-- base_sdc-cassandra -->
<image>
<name>openecomp/base_sdc-cassandra</name>
<alias>base_sdc-cassandra</alias>
<build>
<cleanup>true</cleanup>
<tags>
<tag>${docker.tag}</tag>
<tag>${docker.latest.tag}</tag>
</tags>
<dockerFileDir>${project.basedir}/base_sdc-cassandra</dockerFileDir>
</build>
</image>
<!-- base_sdc-elasticsearch -->
<image>
<name>openecomp/base_sdc-elasticsearch</name>
<alias>base_sdc-elasticsearch</alias>
<build>
<cleanup>true</cleanup>
<tags>
<tag>${docker.tag}</tag>
<tag>${docker.latest.tag}</tag>
</tags>
<dockerFileDir>${project.basedir}/base_sdc-elasticsearch</dockerFileDir>
</build>
</image>
<!-- base_sdc-sanity -->
<image>
<name>openecomp/base_sdc-sanity</name>
<alias>base_sdc-sanity</alias>
<build>
<cleanup>true</cleanup>
<tags>
<tag>${docker.tag}</tag>
<tag>${docker.latest.tag}</tag>
</tags>
<dockerFileDir>${project.basedir}/base_sdc-sanity</dockerFileDir>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>clean-images</id>
<phase>pre-clean</phase>
<goals>
<goal>remove</goal>
</goals>
<configuration>
<removeAll>true</removeAll>
<image>openecomp/base_sdc-backend,openecomp/base_sdc-frontend,openecomp/base_sdc-elasticsearch,openecomp/base_sdc-kibana,openecomp/base_sdc-sanity</image>
</configuration>
</execution>
<execution>
<id>generate-images</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>push-images</id>
<phase>deploy</phase>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
<configuration>
<image>openecomp/base_sdc-backend,openecomp/base_sdc-frontend,openecomp/base_sdc-elasticsearch,openecomp/base_sdc-kibana,openecomp/base_sdc-sanity</image>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ecomp-releases</id>
<name>Release Repository</name>
<url>${nexus.proxy}/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>ecomp-snapshots</id>
<name>Snapshot Repository</name>
<url>${nexus.proxy}/content/repositories/snapshots/</url>
</snapshotRepository>
<site>
<id>ecomp-site</id>
<url>dav:${nexus.proxy}${sitePath}</url>
</site>
</distributionManagement>
</project>
|