diff options
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/pom.xml')
-rw-r--r-- | ecomp-sdk/epsdk-app-os/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-os/pom.xml b/ecomp-sdk/epsdk-app-os/pom.xml index 7287fe1a..add3c1a0 100644 --- a/ecomp-sdk/epsdk-app-os/pom.xml +++ b/ecomp-sdk/epsdk-app-os/pom.xml @@ -30,6 +30,16 @@ <!-- Version number gets stored only here --> <tomcat.download.path>http://archive.apache.org/dist/tomcat/tomcat-8/v8.0.37/bin</tomcat.download.path> <tomcat.download.name>apache-tomcat-8.0.37</tomcat.download.name> + + <sonar.typescript.lcov.reportPaths>ngapp/coverage/lcov.info</sonar.typescript.lcov.reportPaths> + <sonar.sources>ngapp/src</sonar.sources> + <sonar.projectKey>portal-sdk</sonar.projectKey> + <sonar.projectName>portal-sdk</sonar.projectName> + <sonar.exclusions>**/node_modules/**,**/*.spec.ts</sonar.exclusions> + <sonar.test.inclusions>**/*.spec.ts</sonar.test.inclusions> + <sonar.tests>ngapp/src</sonar.tests> + <sonar.sourceEncoding>UTF-8</sonar.sourceEncoding> + </properties> <!-- repositories are inherited from parent --> @@ -130,6 +140,7 @@ <outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory> </configuration> </execution> + </executions> </plugin> @@ -160,7 +171,9 @@ </goals> </execution> + <execution> + <id>npm run build</id> <phase>compile</phase> <goals> |