Ignore:
Timestamp:
08/01/19 15:51:44 (5 years ago)
Author:
pharms
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-utils-test/pom.xml

    r2268 r2269  
    124124                <artifactId>jacoco-maven-plugin</artifactId> 
    125125                <version>0.8.3</version> 
     126                <executions> 
     127                    <execution> 
     128                        <id>default-prepare-agent</id> 
     129                        <goals> 
     130                            <goal>prepare-agent</goal> 
     131                        </goals> 
     132                    </execution> 
     133                    <execution> 
     134                        <id>default-report</id> 
     135                        <goals> 
     136                            <goal>report</goal> 
     137                        </goals> 
     138                    </execution> 
     139                    <execution> 
     140                        <id>default-check</id> 
     141                        <goals> 
     142                            <goal>check</goal> 
     143                        </goals> 
     144                        <configuration> 
     145                            <rules> 
     146                                <rule> 
     147                                    <element>BUNDLE</element> 
     148                                    <limits> 
     149                                        <limit> 
     150                                            <counter>COMPLEXITY</counter> 
     151                                            <value>COVEREDRATIO</value> 
     152                                            <minimum>0.60</minimum> 
     153                                        </limit> 
     154                                    </limits> 
     155                                </rule> 
     156                            </rules> 
     157                        </configuration> 
     158                    </execution> 
     159                </executions> 
    126160            </plugin> 
    127161            <plugin> 
Note: See TracChangeset for help on using the changeset viewer.