diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-10-12 13:13:13 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-10-12 13:13:13 -0700 |
commit | 96692b3dadd390350fe8d4246d0fe8c897c6cd24 (patch) | |
tree | 7d591728423e37be6bc4d1107268db0e82851c67 /version-manifest/pom.xml | |
parent | c1146f195fc05d7b7e95b6e8abe303ef7e544edc (diff) |
Check that java artifacts in manifest are released
Change-Id: If9be2267c9b9fd7255bc1f809513c1c5b7092fba
Issue-ID: INT-586
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'version-manifest/pom.xml')
-rw-r--r-- | version-manifest/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/version-manifest/pom.xml b/version-manifest/pom.xml index 4202b2655..27fb4f478 100644 --- a/version-manifest/pom.xml +++ b/version-manifest/pom.xml @@ -149,6 +149,19 @@ </arguments> </configuration> </execution> + <execution> + <id>check-java-artifacts-released</id> + <phase>verify</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <arguments> + <argument>${project.basedir}/src/main/scripts/check-java-manifest.sh</argument> + <argument>${project.basedir}/src/main/resources/java-manifest.csv</argument> + </arguments> + </configuration> + </execution> </executions> </plugin> </plugins> |