Skip to content

Commit

Permalink
Fixed missing coverage for JaCoCo with JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
valb3r committed Apr 29, 2024
1 parent dde5e85 commit 7400525
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions activiti-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ clean {
test {
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions activiti-xml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ test {

jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions bpmn-intellij-plugin-commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ clean {
test {
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions bpmn-intellij-plugin-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ clean {
test {
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions camunda-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ clean {
test {
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions camunda-xml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ test {

jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions flowable-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ clean {
test {
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions flowable-xml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ test {

jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down
2 changes: 2 additions & 0 deletions xml-parser-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ compileTestKotlin {
test {
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}

testLogging {
Expand Down

0 comments on commit 7400525

Please sign in to comment.