diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-07-15 08:22:16 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-07-15 08:29:36 +0000 |
commit | 612d8c0e3c8c23b24f2378b1f91e803c546d1644 (patch) | |
tree | 9232a4e5cabeb3c4b4098e88fd7b46ae12361615 /starlingx | |
parent | 263f17d303aae3f8f65577eb06ea65e314f47834 (diff) |
Add docker profile for openstack modules
Change-Id: I43094436b2b344fe681261a830755a89e8ab2fcc
Issue-ID: MULTICLOUD-704
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'starlingx')
-rw-r--r-- | starlingx/pom.xml | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/starlingx/pom.xml b/starlingx/pom.xml index 83dd656a..db0cbdd2 100644 --- a/starlingx/pom.xml +++ b/starlingx/pom.xml @@ -113,4 +113,76 @@ </plugin> </plugins> </build> + <profiles> + <profile> + <id>docker</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>3.1.0</version> + <executions> + <execution> + <id>copy-resources</id> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${project.basedir}/docker_target</outputDirectory> + <resources> + <resource> + <directory>${project.basedir}/docker</directory> + <filtering>true</filtering> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.6</version> + <executions> + <execution> + <phase>install</phase> + <inherited>false</inherited> + <configuration> + <target> + <exec executable="docker"> + <arg value="build"/> + <arg value="-t"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-starlingx:${project.version}"/> + <arg value="docker_target"/> + </exec> + <exec executable="docker"> + <arg value="tag"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-starlingx:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-starlingx:latest"/> + </exec> + <exec executable="docker"> + <arg value="push"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-starlingx:${project.version}"/> + </exec> + <exec executable="docker"> + <arg value="push"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-starlingx:latest"/> + </exec> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + </profile> + </profiles> </project> |