diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index e41919c2c..849bf3658 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -23,13 +23,13 @@ path = "../native/build/libs/http-native-2.13.0-SNAPSHOT.jar" groupId = "io.ballerina.stdlib" artifactId = "mime-native" version = "2.11.0" -path = "./lib/mime-native-2.11.0-20241209-180600-aa73132.jar" +path = "./lib/mime-native-2.11.0-20241218-125100-e28a03b.jar" [[platform.java21.dependency]] groupId = "io.ballerina.stdlib" artifactId = "constraint-native" version = "1.6.0" -path = "./lib/constraint-native-1.6.0-20241209-172100-2facdca.jar" +path = "./lib/constraint-native-1.6.0-20241218-112400-cd313f2.jar" [[platform.java21.dependency]] groupId = "io.netty" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index b9a0c88ee..4ffdf4673 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.11.0-20241209-162400-0c015833" +distribution-version = "2201.11.0-20241218-101200-109f6cc7" [[package]] org = "ballerina" diff --git a/compiler-plugin-tests/build.gradle b/compiler-plugin-tests/build.gradle index e5ae999e5..5bba8f80b 100644 --- a/compiler-plugin-tests/build.gradle +++ b/compiler-plugin-tests/build.gradle @@ -94,6 +94,17 @@ test { useTestNG() finalizedBy jacocoTestReport testLogging.showStandardStreams = true + testLogging { + events "PASSED", "FAILED", "SKIPPED" + afterSuite { desc, result -> + if (!desc.parent) { // will match the outermost suite + def output = "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)" + def startItem = '| ', endItem = ' |' + def repeatLength = startItem.length() + output.length() + endItem.length() + println('\n' + ('-' * repeatLength) + '\n' + startItem + output + endItem + '\n' + ('-' * repeatLength)) + } + } + } } jacocoTestReport {