Changeset 2270
- Timestamp:
- 08/01/19 16:02:21 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-test/pom.xml
r2260 r2270 88 88 </plugin> 89 89 <plugin> 90 <groupId>org.codehaus.mojo</groupId> 91 <artifactId>cobertura-maven-plugin</artifactId> 92 <version>2.7</version> 93 <configuration> 94 <formats> 95 <format>xml</format> 96 </formats> 97 </configuration> 90 <groupId>org.jacoco</groupId> 91 <artifactId>jacoco-maven-plugin</artifactId> 92 <version>0.8.3</version> 93 <executions> 94 <execution> 95 <id>default-prepare-agent</id> 96 <goals> 97 <goal>prepare-agent</goal> 98 </goals> 99 </execution> 100 <execution> 101 <id>default-report</id> 102 <goals> 103 <goal>report</goal> 104 </goals> 105 </execution> 106 <execution> 107 <id>default-check</id> 108 <goals> 109 <goal>check</goal> 110 </goals> 111 <configuration> 112 <rules> 113 <rule> 114 <element>BUNDLE</element> 115 <limits> 116 <limit> 117 <counter>COMPLEXITY</counter> 118 <value>COVEREDRATIO</value> 119 <minimum>0.60</minimum> 120 </limit> 121 </limits> 122 </rule> 123 </rules> 124 </configuration> 125 </execution> 126 </executions> 98 127 </plugin> 99 128 </plugins>
Note: See TracChangeset
for help on using the changeset viewer.