File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 21
21
<jackson .version>2.14.2</jackson .version>
22
22
<kafka .version>3.4.0</kafka .version>
23
23
<slf4j .version>2.0.7</slf4j .version>
24
+ <sonar .coverage.jacoco.xmlReportPaths>${project.build.directory} /coverage-reports/jacoco-ut/jacoco.xml</sonar .coverage.jacoco.xmlReportPaths>
24
25
</properties >
25
26
26
27
<dependencies >
194
195
<type >jar</type >
195
196
<scope >compile</scope >
196
197
</dependency >
198
+ <dependency >
199
+ <groupId >org.jacoco</groupId >
200
+ <artifactId >jacoco-maven-plugin</artifactId >
201
+ <version >0.8.9</version >
202
+ </dependency >
197
203
198
204
</dependencies >
199
205
321
327
</executions >
322
328
</plugin >
323
329
330
+ <plugin >
331
+ <groupId >org.sonarsource.scanner.maven</groupId >
332
+ <artifactId >sonar-maven-plugin</artifactId >
333
+ <version >3.10.0.2594</version >
334
+ </plugin >
335
+
324
336
<plugin >
325
337
<artifactId >maven-surefire-plugin</artifactId >
326
338
<version >3.0.0</version >
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ sonar.projectKey=github-mirrors.kafka-connect-splunk
2
2
sonar.sources =src/main/java/
3
3
sonar.language =java
4
4
sonar.java.binaries =.
5
- sonar.exclusions =src/java/test/**,**/examples/**
5
+ sonar.exclusions =src/java/test/**,**/examples/**
6
+ sonar.java.coveragePlugin =jacoco
You can’t perform that action at this time.
0 commit comments