diff options
author | Yang Xu <yang.xu3@huawei.com> | 2018-07-18 19:56:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-07-18 19:56:38 +0000 |
commit | 8487dea60ce4f7d7fb2c6d9a7530820265252bba (patch) | |
tree | cb626fb60a7ba49a8b2dca7ba3d1457de124a889 /version-manifest/pom.xml | |
parent | ee258cf9feb5bc1a39a4d12ab0f70f1816e6af25 (diff) | |
parent | a158a3bccf1817197aba2d104a640ecf0360e286 (diff) |
Merge "Add staging docker manifest"
Diffstat (limited to 'version-manifest/pom.xml')
-rw-r--r-- | version-manifest/pom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/version-manifest/pom.xml b/version-manifest/pom.xml index 2b9722819..bde19331f 100644 --- a/version-manifest/pom.xml +++ b/version-manifest/pom.xml @@ -109,6 +109,19 @@ </configuration> </execution> <execution> + <id>check-docker-manifest-staging-sorted</id> + <phase>validate</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <arguments> + <argument>${project.basedir}/src/main/scripts/check-sorted.sh</argument> + <argument>${project.basedir}/src/main/resources/docker-manifest-staging.csv</argument> + </arguments> + </configuration> + </execution> + <execution> <id>check-java-manifest-sorted</id> <phase>validate</phase> <goals> @@ -134,6 +147,19 @@ </arguments> </configuration> </execution> + <execution> + <id>check-docker-staging-images-exist</id> + <phase>validate</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <arguments> + <argument>${project.basedir}/src/main/scripts/check-docker-manifest-staging.sh</argument> + <argument>${project.basedir}/src/main/resources/docker-manifest-staging.csv</argument> + </arguments> + </configuration> + </execution> </executions> </plugin> </plugins> |