Exclude nodejs files from Sonar analysis

Change-Id: I9428e1a5ad15f9957010e9b0f6c9b6cc1cbc90c1
Issue-id: INT-204
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
diff --git a/alarm-analysis/pom.xml b/alarm-analysis/pom.xml
index be817e8..4f42653 100644
--- a/alarm-analysis/pom.xml
+++ b/alarm-analysis/pom.xml
@@ -29,6 +29,10 @@
     <version>1.1.0-SNAPSHOT</version>
 	<name>client-gui/holmes</name>
 
+    <properties>
+      <sonar.exclusions>src/main/webapp/node_modules/**,src/main/webapp/node/**</sonar.exclusions>
+    </properties>
+
 <build>
 <plugins>
         <plugin>
@@ -90,4 +94,4 @@
         
     </plugins>
 </build> 
-</project>
\ No newline at end of file
+</project>