diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-12-08 22:12:52 +0000 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-12-09 09:44:10 +0000 |
commit | 8b1002a99724180cc9c134a04a5eb0763fde872c (patch) | |
tree | 8e1061f97b28c193d9448885eea3bb2be4f68077 /cucumber-js-test-apis-ci/pom.xml | |
parent | afa3fb50409b8c68e35db42e77a962b76702f8d9 (diff) |
Improve fast-build profile
Remove docker build from 'fast-build' profile
Change-Id: I90b79bc05ecd159b5c6ff62f195507476dcdaa38
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3804
Diffstat (limited to 'cucumber-js-test-apis-ci/pom.xml')
-rw-r--r-- | cucumber-js-test-apis-ci/pom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cucumber-js-test-apis-ci/pom.xml b/cucumber-js-test-apis-ci/pom.xml index a10fef6fcf..c37503cd4a 100644 --- a/cucumber-js-test-apis-ci/pom.xml +++ b/cucumber-js-test-apis-ci/pom.xml @@ -230,8 +230,8 @@ <artifactId>docker-maven-plugin</artifactId> <configuration> <verbose>true</verbose> - <apiVersion>1.23</apiVersion> - <registry>nexus3.onap.org:10001</registry> + <apiVersion>${docker.api.version}</apiVersion> + <registry>${docker.registry}</registry> <authConfig> <pull> <username>docker</username> @@ -241,7 +241,7 @@ <images> <!-- Build sanity image --> <image> - <name>onap/cucumber-sdc-api-tests</name> + <name>${docker.namespace}/cucumber-sdc-api-tests</name> <alias>cucumber-sdc-api-tests</alias> <build> <cleanup>try</cleanup> @@ -269,7 +269,7 @@ </goals> <configuration> <removeAll>true</removeAll> - <image>onap/cucumber-sdc-api-tests</image> + <image>${docker.namespace}/cucumber-sdc-api-tests</image> </configuration> </execution> <execution> @@ -286,7 +286,7 @@ <goal>push</goal> </goals> <configuration> - <image>onap/cucumber-sdc-api-tests</image> + <image>${docker.namespace}/cucumber-sdc-api-tests</image> </configuration> </execution> </executions> |