diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-06-03 13:02:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-06-03 13:02:55 +0000 |
commit | b31ee1c9c566ae070c214e9a26beefb9fc939ff9 (patch) | |
tree | 991064f9833b36f2051ceb6c9b94c930596f700a /pom.xml | |
parent | 571d4aa9ffa02acca1a1edbff2f6cf5d7748950f (diff) | |
parent | fd8f013b377b419d9a177f5dd00c94fcdc40a2ca (diff) |
Merge "Add check to maven pom.xml for verifying integrity of ui-react-lib"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1231,6 +1231,26 @@ <artifactId>sonar-maven-plugin</artifactId> <version>3.7.0.1746</version> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.3.2</version> + <executions> + <execution> + <id>libIndexCheck</id> + <phase>validate</phase> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>bash</executable> + <arguments> + <argument>${project.basedir}/src/main/script/checkLibIndex.sh</argument> + </arguments> + </configuration> + </plugin> </plugins> </build> </project> |