File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 73
73
<maven-javadoc-plugin .version>2.9.1</maven-javadoc-plugin .version>
74
74
<maven-release-plugin .version>2.4.1</maven-release-plugin .version>
75
75
<maven-gpg-plugin .version>1.4</maven-gpg-plugin .version>
76
+ <jacoco-maven-plugin .version>0.6.4.201312101107</jacoco-maven-plugin .version>
76
77
</properties >
77
78
78
79
<dependencies >
153
154
<tagNameFormat >@{project.version}</tagNameFormat >
154
155
</configuration >
155
156
</plugin >
157
+
158
+ <plugin >
159
+ <groupId >org.jacoco</groupId >
160
+ <artifactId >jacoco-maven-plugin</artifactId >
161
+ <version >${jacoco-maven-plugin.version} </version >
162
+ <configuration >
163
+ <excludes >
164
+ <exclude >**/BuildConfig.class</exclude >
165
+ <exclude >**/R*.class</exclude >
166
+ </excludes >
167
+ </configuration >
168
+ <executions >
169
+ <execution >
170
+ <id >jacoco-initialize</id >
171
+ <phase >initialize</phase >
172
+ <goals >
173
+ <goal >prepare-agent</goal >
174
+ </goals >
175
+ </execution >
176
+ <execution >
177
+ <id >jacoco-site</id >
178
+ <phase >package</phase >
179
+ <goals >
180
+ <goal >report</goal >
181
+ </goals >
182
+ </execution >
183
+ </executions >
184
+ </plugin >
156
185
</plugins >
157
186
</build >
158
187
You can’t perform that action at this time.
0 commit comments