Skip to content

Commit 4d4033a

Browse files
author
nareshwart
committed
pom
1 parent 1ef0b8e commit 4d4033a

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

pom.xml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,37 @@
106106
<rule>
107107
<element>BUNDLE</element>
108108
<limits>
109+
<!-- Line Coverage -->
109110
<limit>
110111
<counter>LINE</counter>
111112
<value>COVEREDRATIO</value>
112-
<minimum>0.50</minimum>
113+
<minimum>0.70</minimum>
114+
</limit>
115+
<!-- Branch Coverage -->
116+
<limit>
117+
<counter>BRANCH</counter>
118+
<value>COVEREDRATIO</value>
119+
<minimum>0.60</minimum>
120+
</limit>
121+
<!-- Method Coverage -->
122+
<limit>
123+
<counter>METHOD</counter>
124+
<value>COVEREDRATIO</value>
125+
<minimum>0.75</minimum>
126+
</limit>
127+
<!-- Class Coverage -->
128+
<limit>
129+
<counter>CLASS</counter>
130+
<value>COVEREDRATIO</value>
131+
<minimum>0.80</minimum>
113132
</limit>
114133
</limits>
115134
</rule>
116135
</rules>
136+
<!-- Exclude Vaadin UI classes from coverage -->
137+
<excludes>
138+
<exclude>com/devopsdemo/tutorial/addressbook/AddressbookUI*</exclude>
139+
</excludes>
117140
</configuration>
118141
</execution>
119142
</executions>

0 commit comments

Comments
 (0)