You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2022/06/07 02:26:55 UTC

[tapestry-5] branch master updated (bb463641a -> bf20b741e)

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

thiagohp pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


    from bb463641a Adding JUnit Jupiter dependency so Groovy tests can be run
     new 4cc99f027 Adding JUnit Jupiter test dependency to more subprojects
     new bf20b741e TAP5-2723: fixing JavaDoc errors

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 beanmodel/build.gradle                             |  1 +
 commons/build.gradle                               |  1 +
 genericsresolver-guava/build.gradle                |  1 +
 plastic/build.gradle                               |  3 +-
 tapestry-beanvalidator/build.gradle                |  1 +
 tapestry-clojure/build.gradle                      |  1 +
 tapestry-func/build.gradle                         |  1 +
 .../ioc/internal/services/cron/CronExpression.java | 82 +++++++++++-----------
 tapestry-json/build.gradle                         |  2 +-
 tapestry-latest-java-tests/build.gradle            |  1 +
 tapestry-mongodb/build.gradle                      |  2 +-
 tapestry-spock/build.gradle                        |  1 +
 tapestry-webresources/build.gradle                 |  2 +-
 13 files changed, 54 insertions(+), 45 deletions(-)


[tapestry-5] 02/02: TAP5-2723: fixing JavaDoc errors

Posted by th...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bf20b741e49a22d6f05b820f51d466231d7664a5
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Mon Jun 6 23:26:43 2022 -0300

    TAP5-2723: fixing JavaDoc errors
---
 .../ioc/internal/services/cron/CronExpression.java | 82 +++++++++++-----------
 1 file changed, 41 insertions(+), 41 deletions(-)

diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java
index 9f98382f8..1423ef489 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/cron/CronExpression.java
@@ -25,62 +25,62 @@ import java.util.*;
  * Cron expressions are comprised of 6 required fields and one optional field
  * separated by white space. The fields respectively are described as follows:
  * 
- * <table cellspacing="8">
+ * <table>
  * <tr>
- * <th align="left">Field Name</th>
- * <th align="left">&nbsp;</th>
- * <th align="left">Allowed Values</th>
- * <th align="left">&nbsp;</th>
- * <th align="left">Allowed Special Characters</th>
+ * <thstyle="text-align: left;">Field Name</th>
+ * <thstyle="text-align: left;">&nbsp;</th>
+ * <thstyle="text-align: left;">Allowed Values</th>
+ * <thstyle="text-align: left;">&nbsp;</th>
+ * <thstyle="text-align: left;">Allowed Special Characters</th>
  * </tr>
  * <tr>
- * <td align="left"><code>Seconds</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>0-59</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * /</code></td>
+ * <tdstyle="text-align: left;"><code>Seconds</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>0-59</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * /</code></td>
  * </tr>
  * <tr>
- * <td align="left"><code>Minutes</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>0-59</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * /</code></td>
+ * <tdstyle="text-align: left;"><code>Minutes</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>0-59</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * /</code></td>
  * </tr>
  * <tr>
- * <td align="left"><code>Hours</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>0-23</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * /</code></td>
+ * <tdstyle="text-align: left;"><code>Hours</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>0-23</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * /</code></td>
  * </tr>
  * <tr>
- * <td align="left"><code>Day-of-month</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>1-31</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * ? / L W</code></td>
+ * <tdstyle="text-align: left;"><code>Day-of-month</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>1-31</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * ? / L W</code></td>
  * </tr>
  * <tr>
- * <td align="left"><code>Month</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>0-11 or JAN-DEC</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * /</code></td>
+ * <tdstyle="text-align: left;"><code>Month</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>0-11 or JAN-DEC</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * /</code></td>
  * </tr>
  * <tr>
- * <td align="left"><code>Day-of-Week</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>1-7 or SUN-SAT</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * ? / L #</code></td>
+ * <tdstyle="text-align: left;"><code>Day-of-Week</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>1-7 or SUN-SAT</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * ? / L #</code></td>
  * </tr>
  * <tr>
- * <td align="left"><code>Year (Optional)</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>empty, 1970-2199</code></td>
- * <td align="left">&nbsp;</th>
- * <td align="left"><code>, - * /</code></td>
+ * <tdstyle="text-align: left;"><code>Year (Optional)</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>empty, 1970-2199</code></td>
+ * <tdstyle="text-align: left;">&nbsp;</th>
+ * <tdstyle="text-align: left;"><code>, - * /</code></td>
  * </tr>
  * </table>
  * <P>


[tapestry-5] 01/02: Adding JUnit Jupiter test dependency to more subprojects

Posted by th...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 4cc99f027f44d36a2283b998688bddf9ff10d663
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Mon Jun 6 23:26:23 2022 -0300

    Adding JUnit Jupiter test dependency to more subprojects
---
 beanmodel/build.gradle                  | 1 +
 commons/build.gradle                    | 1 +
 genericsresolver-guava/build.gradle     | 1 +
 plastic/build.gradle                    | 3 ++-
 tapestry-beanvalidator/build.gradle     | 1 +
 tapestry-clojure/build.gradle           | 1 +
 tapestry-func/build.gradle              | 1 +
 tapestry-json/build.gradle              | 2 +-
 tapestry-latest-java-tests/build.gradle | 1 +
 tapestry-mongodb/build.gradle           | 2 +-
 tapestry-spock/build.gradle             | 1 +
 tapestry-webresources/build.gradle      | 2 +-
 12 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/beanmodel/build.gradle b/beanmodel/build.gradle
index 9bdd925c5..f6f679012 100644
--- a/beanmodel/build.gradle
+++ b/beanmodel/build.gradle
@@ -24,6 +24,7 @@ dependencies {
 
     testImplementation "org.testng:testng:${versions.testng}", { transitive = false }
     testImplementation "org.easymock:easymock:${versions.easymock}"
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
 
 clean.delete generateGrammarSource.outputDirectory
diff --git a/commons/build.gradle b/commons/build.gradle
index 9caed3f81..99cb1d4d9 100644
--- a/commons/build.gradle
+++ b/commons/build.gradle
@@ -11,6 +11,7 @@ dependencies {
 	api project(":plastic")
 	api project(":tapestry5-annotations")
 	implementation project(":tapestry-func")
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
 
 jar {	
diff --git a/genericsresolver-guava/build.gradle b/genericsresolver-guava/build.gradle
index c6001a9ff..a20be0d48 100644
--- a/genericsresolver-guava/build.gradle
+++ b/genericsresolver-guava/build.gradle
@@ -5,4 +5,5 @@ dependencies {
   testImplementation project(':tapestry-core')
   testImplementation project(':tapestry-test')
   provided implementation ('com.google.guava:guava:27.0.1-jre')
+  testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
\ No newline at end of file
diff --git a/plastic/build.gradle b/plastic/build.gradle
index ba8ff1041..f5bdee139 100644
--- a/plastic/build.gradle
+++ b/plastic/build.gradle
@@ -1,7 +1,8 @@
 description = "High-level runtime transformations of Java classes"
-project.setProperty("description", "wtf!!!!")
+
 dependencies {
     implementation "org.slf4j:slf4j-api:${versions.slf4j}"
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
 
 test { 
diff --git a/tapestry-beanvalidator/build.gradle b/tapestry-beanvalidator/build.gradle
index 9c22edeef..4e510a5ed 100644
--- a/tapestry-beanvalidator/build.gradle
+++ b/tapestry-beanvalidator/build.gradle
@@ -14,6 +14,7 @@ dependencies {
       exclude group: "org.testng", module: "testng"
       exclude group: "javax.servlet", module: "javax.servlet-api"
   }
+  testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
   
 }
 
diff --git a/tapestry-clojure/build.gradle b/tapestry-clojure/build.gradle
index 9ce3f66ba..d1f044446 100644
--- a/tapestry-clojure/build.gradle
+++ b/tapestry-clojure/build.gradle
@@ -7,6 +7,7 @@ dependencies {
   // Added just to prove that it works (TAP5-1945)
   testImplementation project(':tapestry-core')
   testRuntimeOnly "javax.servlet:javax.servlet-api:${versions.servletapi}"
+  testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
 
 test {
diff --git a/tapestry-func/build.gradle b/tapestry-func/build.gradle
index a160dd0de..fa7b059ea 100644
--- a/tapestry-func/build.gradle
+++ b/tapestry-func/build.gradle
@@ -3,4 +3,5 @@ description = "Light-weight functional programming for Flows of values"
 dependencies {
   testImplementation   "org.testng:testng:${versions.testng}"
   testImplementation   "commons-lang:commons-lang:2.6"
+  testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
\ No newline at end of file
diff --git a/tapestry-json/build.gradle b/tapestry-json/build.gradle
index 9b9d573ef..055ed9a73 100644
--- a/tapestry-json/build.gradle
+++ b/tapestry-json/build.gradle
@@ -1,8 +1,8 @@
 description = "Repackaged, improved (and tested) version of code originally from https://github.com/tdunning/open-json"
 
 dependencies {
-
     provided project(':tapestry-ioc')
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
 
 test {
diff --git a/tapestry-latest-java-tests/build.gradle b/tapestry-latest-java-tests/build.gradle
index ba43a9fd3..4371b82ff 100644
--- a/tapestry-latest-java-tests/build.gradle
+++ b/tapestry-latest-java-tests/build.gradle
@@ -22,4 +22,5 @@ dependencies {
     testImplementation project(':tapestry-ioc')
     testImplementation "org.slf4j:slf4j-api:${versions.slf4j}"
     testImplementation "org.testng:testng:${versions.testng}"
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
diff --git a/tapestry-mongodb/build.gradle b/tapestry-mongodb/build.gradle
index 5fb5b3cdd..6428ece0d 100644
--- a/tapestry-mongodb/build.gradle
+++ b/tapestry-mongodb/build.gradle
@@ -7,7 +7,7 @@ dependencies {
     implementation group: 'org.mongodb', name: 'mongo-java-driver', version: '2.10.1'
 
     testImplementation group: 'org.jongo', name: 'jongo', version: '0.3'
-
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
     testImplementation "de.flapdoodle.embed:de.flapdoodle.embed.mongo:1.28"
 }
 
diff --git a/tapestry-spock/build.gradle b/tapestry-spock/build.gradle
index dc10977b8..fc06771da 100644
--- a/tapestry-spock/build.gradle
+++ b/tapestry-spock/build.gradle
@@ -6,6 +6,7 @@ dependencies {
 	implementation "org.spockframework:spock-core:${versions.spock}"
 	
 	testImplementation "javax.inject:javax.inject:1"
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
 }
 
 test {
diff --git a/tapestry-webresources/build.gradle b/tapestry-webresources/build.gradle
index 637d7122f..236dde6a7 100644
--- a/tapestry-webresources/build.gradle
+++ b/tapestry-webresources/build.gradle
@@ -22,7 +22,7 @@ dependencies {
     testImplementation "org.spockframework:spock-tapestry:${versions.spock}", {
     	exclude group: "org.apache.tapestry"
     }
-    
+    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
     testImplementation "org.seleniumhq.selenium:selenium-java:${versions.selenium}", {
         exclude group: "org.eclipse.jetty"
     }