diff options
author | Christopher Lott (cl778h) <clott@research.att.com> | 2017-08-25 15:31:33 -0400 |
---|---|---|
committer | Christopher Lott (cl778h) <clott@research.att.com> | 2017-08-25 15:33:02 -0400 |
commit | e43e03d4da9bd760d67d746a949efbb7e5d102a8 (patch) | |
tree | 23166a6da5523e7644fb5c28fe5bfa4998aa6a05 /ecomp-portal-BE-os/pom.xml | |
parent | f57e82d8c734e59977c39bc6a0139174cb7f0649 (diff) |
Enable junit test cases and fix defects.
Clean internal company domain names.
Repair defect for picking Role in Widget onboarding for assigned app.
Issue: PORTAL-50, PORTAL-82, PORTAL-86
Change-Id: I0826ddbfad1dc8a9bb6f3b8096b9748f887c1c65
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'ecomp-portal-BE-os/pom.xml')
-rw-r--r-- | ecomp-portal-BE-os/pom.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ecomp-portal-BE-os/pom.xml b/ecomp-portal-BE-os/pom.xml index 966a7020..22b13749 100644 --- a/ecomp-portal-BE-os/pom.xml +++ b/ecomp-portal-BE-os/pom.xml @@ -15,7 +15,8 @@ <encoding>UTF-8</encoding> <!-- If Skiptests is false use mvn clean jacoco:prepare-agent install jacoco:report to run jacoco report --> - <skipTests>true</skipTests> + <skipTests>false</skipTests> + <skipCoverage>true</skipCoverage> <!-- Jenkins SHOULD invoke mvn with argument -Dbuild.number=${BUILD_NUMBER} --> <build.number>0</build.number> <sonar.exclusions>**.js</sonar.exclusions> @@ -116,7 +117,7 @@ <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. --> <propertyName>surefireArgLine</propertyName> - <skip>${skipTests}</skip> + <skip>${skipCoverage}</skip> </configuration> </execution> @@ -133,7 +134,7 @@ <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile> <!-- Sets the output directory for the code coverage report. --> <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> - <skip>${skipTests}</skip> + <skip>${skipCoverage}</skip> </configuration> </execution> @@ -145,7 +146,7 @@ <goal>instrument</goal> </goals> <configuration> - <skip>${skipTests}</skip> + <skip>${skipCoverage}</skip> </configuration> </execution> <execution> @@ -154,7 +155,7 @@ <goal>restore-instrumented-classes</goal> </goals> <configuration> - <skip>${skipTests}</skip> + <skip>${skipCoverage}</skip> </configuration> </execution> </executions> |