aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorTed Humphrey <Thomas.Humphrey@att.com>2020-06-02 09:39:30 -0400
committerTed Humphrey <Thomas.Humphrey@att.com>2020-06-03 08:13:05 -0400
commitfd8f013b377b419d9a177f5dd00c94fcdc40a2ca (patch)
treec83b57d110268a892cbe129a58e9ec39838e50a2 /pom.xml
parent91a96a677b251ad0a1b18cfa202241f43c347f37 (diff)
Add check to maven pom.xml for verifying integrity of ui-react-lib
A new shell script is introduced for verifying that ui-react-lib/libIndex.js is faithfully synchronized with components maintained in ui-react/src, in order to provide an NPM onap-clamp-ui-lib Issue-ID: CLAMP-669 Change-Id: I48eb979e3fbe110b718b96c0fcee08a2ced7a36b Signed-off-by: Ted Humphrey <Thomas.Humphrey@att.com>
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 5a154098..c15b5425 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1264,6 +1264,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>