diff options
author | Ravi Geda <gravik@amdocs.com> | 2019-04-01 13:27:57 +0100 |
---|---|---|
committer | Tian Lee <TianL@amdocs.com> | 2019-04-01 13:22:28 +0000 |
commit | 0338683186c994d579b1ec297604dba59df73dff (patch) | |
tree | c40c89b73ced319ec7ed614242c9f4f6c7b60c66 /champ-lib/champ-titan/pom.xml | |
parent | 2587d778f8f2894b9abc60c5ac22c7f8bab5d71d (diff) |
Enforce minimum Jacoco line coverage
Change-Id: I27e1cf95384ebe5213f4a0f082a1a4360af2675c
Issue-ID: AAI-2305
Signed-off-by: Ravi Geda <gravik@amdocs.com>
Diffstat (limited to 'champ-lib/champ-titan/pom.xml')
-rw-r--r-- | champ-lib/champ-titan/pom.xml | 70 |
1 files changed, 3 insertions, 67 deletions
diff --git a/champ-lib/champ-titan/pom.xml b/champ-lib/champ-titan/pom.xml index a08305d..b3a446d 100644 --- a/champ-lib/champ-titan/pom.xml +++ b/champ-lib/champ-titan/pom.xml @@ -34,6 +34,9 @@ limitations under the License. <properties> <tinkerpop.version>3.0.1-incubating</tinkerpop.version> + <!-- Minimum code coverage percentage. Please update this figure as coverage increases to prevent any drops in + coverage caused by new changes. Note that this figure cannot be lower than the ONAP requirement of 0.55 --> + <jacoco.line.coverage.limit>0.72</jacoco.line.coverage.limit> </properties> <dependencies> @@ -123,73 +126,6 @@ limitations under the License. <build> <plugins> <plugin> - <groupId>org.jacoco</groupId> - <artifactId>jacoco-maven-plugin</artifactId> - <version>0.7.9</version> - <executions> - <execution> - <id>default-prepare-agent</id> - <goals> - <goal>prepare-agent</goal> - </goals> - </execution> - <execution> - <id>default-report</id> - <phase>prepare-package</phase> - <goals> - <goal>report</goal> - </goals> - </execution> - <execution> - <id>default-check</id> - <goals> - <goal>check</goal> - </goals> - <configuration> - <rules> - <!-- implementation is needed only for Maven 2 --> - <rule implementation="org.jacoco.maven.RuleConfiguration"> - <element>BUNDLE</element> - <limits> - <!-- implementation is needed only for Maven 2 --> - <limit implementation="org.jacoco.report.check.Limit"> - <counter>INSTRUCTION</counter> - <value>COVEREDRATIO</value> - <minimum>.15</minimum> - </limit> - <limit implementation="org.jacoco.report.check.Limit"> - <counter>BRANCH</counter> - <value>COVEREDRATIO</value> - <minimum>.14</minimum> - </limit> - <limit implementation="org.jacoco.report.check.Limit"> - <counter>COMPLEXITY</counter> - <value>COVEREDRATIO</value> - <minimum>.15</minimum> - </limit> - <limit implementation="org.jacoco.report.check.Limit"> - <counter>LINE</counter> - <value>COVEREDRATIO</value> - <minimum>.18</minimum> - </limit> - <limit implementation="org.jacoco.report.check.Limit"> - <counter>METHOD</counter> - <value>COVEREDRATIO</value> - <minimum>.10</minimum> - </limit> - <limit implementation="org.jacoco.report.check.Limit"> - <counter>CLASS</counter> - <value>MISSEDCOUNT</value> - <maximum>2</maximum> - </limit> - </limits> - </rule> - </rules> - </configuration> - </execution> - </executions> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> |