Skip to content

Commit 5eefe88

Browse files
Merge branch '10.0.x' into 11.0.x
2 parents 4d5c9d7 + 348fe50 commit 5eefe88

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ common {
44
upstreamProjects = 'confluentinc/common'
55
pintMerge = true
66
downStreamValidate = false
7+
nodeLabel = 'docker-oraclejdk8'
8+
sonarqubeScannerEnable = true
79
}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
<limit>
325325
<counter>INSTRUCTION</counter>
326326
<value>COVEREDRATIO</value>
327-
<minimum>0.85</minimum>
327+
<minimum>0.80</minimum>
328328
</limit>
329329
<limit>
330330
<counter>BRANCH</counter>
@@ -359,7 +359,7 @@
359359
</execution>
360360
<execution>
361361
<id>report</id>
362-
<phase>test</phase>
362+
<phase>verify</phase>
363363
<goals>
364364
<goal>report</goal>
365365
</goals>

sonar-project.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
sonar.projectKey=kafka-connect-elasticsearch
2+
sonar.sources=src/main/java
3+
sonar.java.binaries=target/classes/**
4+
sonar.exclusions=**/test/**/*,**/tests/**/*,**/mock/**/*,**/mocks/**/*,**/*mock*,**/*test*
5+
sonar.test.inclusions=**/*Test.java,**/*IT.java
6+
sonar.coverage.jacoco.xmlReportPaths=**/jacoco.xml
7+
sonar.java.tests.reportPaths=**/surefire/**
8+
sonar.language=java

0 commit comments

Comments
 (0)