diff options
author | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2020-02-13 10:14:16 +0100 |
---|---|---|
committer | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2020-02-13 10:23:59 +0100 |
commit | 41a5418f3d93fb09d5544c2070b42d5d5f4e216a (patch) | |
tree | a2ef639e0fdc46c4acae7bb35018700d1dfebc79 /certService/pom.xml | |
parent | dd700fc459be08a807646a90f6dd106f99001860 (diff) |
Adjust docker versions and names
Issue-ID: AAF-995
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Change-Id: If9f9bd19b34c655d8277b2d981d357812c3371b2
Diffstat (limited to 'certService/pom.xml')
-rw-r--r-- | certService/pom.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/certService/pom.xml b/certService/pom.xml index 393d3bc4..194e2ae4 100644 --- a/certService/pom.xml +++ b/certService/pom.xml @@ -42,6 +42,8 @@ <docker.tag>${project.version}</docker.tag> <springdoc-openapi-maven-plugin.apiDocsUrl>http://localhost:8080/v3/api-docs </springdoc-openapi-maven-plugin.apiDocsUrl> + <docker-maven-plugin.image-name>onap/${project.artifactId}</docker-maven-plugin.image-name> + <springdoc-openapi-maven-plugin.version>0.2</springdoc-openapi-maven-plugin.version> </properties> <dependencyManagement> @@ -190,7 +192,7 @@ <plugin> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-maven-plugin</artifactId> - <version>0.2</version> + <version>${springdoc-openapi-maven-plugin.version}</version> <executions> <execution> <phase>integration-test</phase> @@ -237,7 +239,7 @@ </goals> <configuration> <removeAll>true</removeAll> - <image>onap/cert-service</image> + <image>${docker-maven-plugin.image-name}</image> </configuration> </execution> <execution> @@ -269,7 +271,7 @@ <goal>push</goal> </goals> <configuration> - <image>onap/cert-service</image> + <image>${docker-maven-plugin.image-name}</image> </configuration> </execution> </executions> @@ -284,7 +286,7 @@ </authConfig> <images> <image> - <name>onap/cert-service</name> + <name>${docker-maven-plugin.image-name}</name> <alias>cert-service</alias> <build> <dockerFile>${project.basedir}/Dockerfile</dockerFile > |