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 7425c430e TAP5-2810: fixing another syntax error in build.gradle again
7425c430e is described below

commit 7425c430e5acd30a4a5f66d8048528077007c8bc
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Tue Jul 29 20:18:15 2025 -0300

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

diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 7f3631771..cbab38d33 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -147,25 +147,25 @@ task runTestAppfolder(type:JavaExec) {
 // other combinations
 
 task testWithJqueryAndRequireJsDisabled(type:Test) {
-  print("-------------------------------------");
-  print("Test suite with jQuery as infrastructure and Require.js disabled")
-  print("-------------------------------------);
+  println "-------------------------------------"
+  println "Test suite with jQuery as infrastructure and Require.js disabled"
+  println "-------------------------------------"
   systemProperties."tapestry.javascript-infrastructure-provider" = "jquery"
   systemProperties."tapestry.require-js-enabled" = "false"
 }
 
 task testWithPrototypeAndRequireJsEnabled(type:Test) {
-  print("-------------------------------------");
-  print("Test suite with Prototype.js as infrastructure and Require.js 
enabled")
-  print("-------------------------------------);
+  println "-------------------------------------"
+  println "Test suite with Prototype.js as infrastructure and Require.js 
enabled"
+  println "-------------------------------------"
   systemProperties."tapestry.javascript-infrastructure-provider" = "prototype"
   systemProperties."tapestry.require-js-enabled" = "true"
 }  
 
 task testWithPrototypeAndRequireJsDisabled(type:Test) {
-  print("-------------------------------------");
-  print("Test suite with Prototype.js as infrastructure and Require.js 
disabled")
-  print("-------------------------------------");
+  println "-------------------------------------"
+  println "Test suite with Prototype.js as infrastructure and Require.js 
disabled"
+  println "-------------------------------------"
   systemProperties."tapestry.javascript-infrastructure-provider" = "prototype"
   systemProperties."tapestry.require-js-enabled" = "false"
 }
\ No newline at end of file

Reply via email to