This is an automated email from the ASF dual-hosted git repository.
thiagohp pushed a commit to branch feature/coffeescript-to-typescript
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to
refs/heads/feature/coffeescript-to-typescript by this push:
new e8e10d986 Enabling logging to Gradle console on tapestry-beanvalidator
e8e10d986 is described below
commit e8e10d9865f2b6554fa986da723c94aa29da203e
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Sat Jun 7 09:20:59 2025 -0300
Enabling logging to Gradle console on tapestry-beanvalidator
---
tapestry-beanvalidator/build.gradle | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tapestry-beanvalidator/build.gradle
b/tapestry-beanvalidator/build.gradle
index 7c20eb3ea..eaa51d8d4 100644
--- a/tapestry-beanvalidator/build.gradle
+++ b/tapestry-beanvalidator/build.gradle
@@ -17,6 +17,11 @@ dependencies {
}
+test {
+ testLogging.showStandardStreams = true
+ testLogging.exceptionFormat = 'full'
+}
+
// Start up the test app, useful when debugging failing integration tests
task runTestApp303(type:JavaExec) {
main = 'org.apache.tapestry5.test.JettyRunner'