diff options
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..4a6291184 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-staging-docker-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> |