File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 34
34
<properties >
35
35
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
36
36
<sonar .sources>src/main/groovy</sonar .sources>
37
- <sonar .test.source>src/test/groovy</sonar .test.source>
38
37
<sonar .groovy.jacoco.reportPath>target/jacoco.exec</sonar .groovy.jacoco.reportPath>
38
+ <sonar .groovy.jacoco.itReportPath>target/jacoco-it.exec</sonar .groovy.jacoco.itReportPath>
39
39
</properties >
40
40
41
41
<scm >
113
113
<configuration >
114
114
<includes >
115
115
<include >de.triology.blog.testdataloader.demo.Demo</include >
116
+ <include >**/*Test.java</include >
116
117
</includes >
117
118
</configuration >
118
119
</plugin >
119
120
121
+
120
122
<plugin >
121
123
<groupId >org.codehaus.mojo</groupId >
122
124
<artifactId >build-helper-maven-plugin</artifactId >
240
242
241
243
<build >
242
244
<plugins >
243
-
244
245
<!-- prepare jacoco agent for code coverage in sonar -->
245
246
<plugin >
246
247
<groupId >org.jacoco</groupId >
247
248
<artifactId >jacoco-maven-plugin</artifactId >
249
+ <version >0.7.9</version >
248
250
<executions >
249
251
<execution >
250
252
<phase >initialize</phase >
251
253
<goals >
252
254
<goal >prepare-agent</goal >
253
255
</goals >
254
256
</execution >
257
+ <execution >
258
+ <id >agent-for-it</id >
259
+ <goals >
260
+ <goal >prepare-agent-integration</goal >
261
+ </goals >
262
+ </execution >
255
263
</executions >
256
264
</plugin >
257
265
</plugins >
You can’t perform that action at this time.
0 commit comments