aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSébastien Determe <sebastien.determe@intl.att.com>2020-06-03 13:02:55 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-03 13:02:55 +0000
commitb31ee1c9c566ae070c214e9a26beefb9fc939ff9 (patch)
tree991064f9833b36f2051ceb6c9b94c930596f700a /pom.xml
parent571d4aa9ffa02acca1a1edbff2f6cf5d7748950f (diff)
parentfd8f013b377b419d9a177f5dd00c94fcdc40a2ca (diff)
Merge "Add check to maven pom.xml for verifying integrity of ui-react-lib"
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index fe2ca72d..50155010 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>