Skip to content

Commit

Permalink
Merge pull request #390 from valb3r/bugfix/FBP-387-EDT-exception
Browse files Browse the repository at this point in the history
Bump JaCoCo
  • Loading branch information
valb3r committed Apr 29, 2024
2 parents 2a08cc5 + 7400525 commit 921c608
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 1 deletion.
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: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ allprojects {
apply plugin: 'jacoco'

jacoco {
toolVersion = '0.8.7'
toolVersion = '0.8.12'
}
}

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 921c608

Please sign in to comment.