This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch feature/requirejs-less
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/feature/requirejs-less by this 
push:
     new 10e2bb128 TAP5-2810: fixing syntax error in build.gradle
10e2bb128 is described below

commit 10e2bb128c1d40bffa2ce695af3f6d25b172b99e
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Tue Jul 29 20:07:23 2025 -0300

    TAP5-2810: fixing syntax error in build.gradle
---
 tapestry-core/build.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 6d18543f5..f41e8b466 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -147,7 +147,7 @@ task runTestAppfolder(type:JavaExec) {
 // other combinations
 
 task testWithJqueryAndRequireJsDisabled(type:Test) {
-  print("-------------------------------------);
+  print("-------------------------------------");
   print("Test suite with jQuery as infrastructure and Require.js disabled")
   print("-------------------------------------);
   systemProperties."tapestry.javascript-infrastructure-provider" = "jquery"
@@ -155,7 +155,7 @@ task testWithJqueryAndRequireJsDisabled(type:Test) {
 }
 
 task testWithPrototypeAndRequireJsEnabled(type:Test) {
-  print("-------------------------------------);
+  print("-------------------------------------");
   print("Test suite with Prototype.js as infrastructure and Require.js 
enabled")
   print("-------------------------------------);
   systemProperties."tapestry.javascript-infrastructure-provider" = "prototype"
@@ -163,7 +163,7 @@ task testWithPrototypeAndRequireJsEnabled(type:Test) {
 }  
 
 task testWithPrototypeAndRequireJsDisabled(type:Test) {
-  print("-------------------------------------);
+  print("-------------------------------------");
   print("Test suite with Prototype.js as infrastructure and Require.js 
disabled")
   print("-------------------------------------);
   systemProperties."tapestry.javascript-infrastructure-provider" = "prototype"

Reply via email to