This is an automated email from the ASF dual-hosted git repository.
benweidig pushed a change to branch javax
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
from aabbc49ac TAP5-2810: little tweaks around ES shims
new f5740b5c7 ioc-jcache: Explitly request jsr107 CachingProvider
new 40a38e59a TAP5-2809: exclude netty from mavenLocal, improve project
version guards
new 2d5509c3a webresources: GoogleClosureMinimizer reduce logging, improve
error handling
new 96cf167a5 TAP5-2809: run TestNG unit tests via Jupiter, integration
tests native, more cleanup
new 6e1317f94 TAP5-2809: buildSrc cleanup/documentation, Gradle 9
preparations
new f8a607478 TAP5-2809: Don't emit TypeScript typings into es-emoduls
new eab2906ed TAP5-2819: Jenkinsfile improved
new cd4880a81 minor fixes after cherry-picking master changes
The 8 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:
Jenkinsfile | 39 +++---
Jenkinsfile.integration-variants | 51 +++----
build.gradle | 63 ++++-----
buildSrc/README.md | 139 ++++++++++++++++++
.../main/groovy/t5build/GenerateChecksums.groovy | 12 ++
buildSrc/src/main/groovy/t5build/NpmTask.groovy | 112 +++++++++++++++
buildSrc/src/main/groovy/t5build/SSshExec.groovy | 21 ---
buildSrc/src/main/groovy/t5build/Scp.groovy | 36 -----
buildSrc/src/main/groovy/t5build/SshTask.groovy | 94 -------------
.../main/groovy/t5build/TapestryBuildLogic.groovy | 22 ---
.../main/groovy/tapestry.java-convention.gradle | 12 +-
.../tapestry.junit4-legacy-convention.gradle | 16 ++-
.../main/groovy/tapestry.junit5-convention.gradle | 14 +-
.../groovy/tapestry.junit5-spock-convention.gradle | 4 +
.../src/main/groovy/tapestry.ssh-convention.gradle | 15 --
.../groovy/tapestry.testing-base-convention.gradle | 39 ++++--
.../main/groovy/tapestry.testng-convention.gradle | 35 +++--
gradle/libs.versions.toml | 9 +-
quickstart/build.gradle | 59 ++++----
settings.gradle | 15 +-
tapestry-beanvalidator/build.gradle | 17 ++-
tapestry-cdi/build.gradle | 1 -
tapestry-core/build.gradle | 156 ++++++++++++---------
tapestry-core/src/main/typescript/package.json | 22 +--
tapestry-core/src/main/typescript/tsconfig.json | 2 -
tapestry-core/src/test/resources/testng.xml | 44 ------
tapestry-hibernate/build.gradle | 15 ++
.../internal/HibernateEntityValueEncoderTest.java | 2 +-
tapestry-hibernate/src/test/resources/testng.xml | 5 -
tapestry-http/build.gradle | 15 ++
tapestry-http/src/test/resources/testng.xml | 11 ++
.../tapestry5/jcache/internal/HarnessModule.java | 2 +-
tapestry-ioc/build.gradle | 2 +-
tapestry-jmx/build.gradle | 15 ++
tapestry-jpa/build.gradle | 15 ++
.../jpa/JpaTransactionAdvisorImplTest.java | 27 ++--
.../org/apache/tapestry5/jpa/test/JpaTest.java | 17 ++-
tapestry-kaptcha/build.gradle | 15 ++
.../kaptcha/components/KaptchaUnitTest.java | 12 +-
tapestry-spring/build.gradle | 17 ++-
tapestry-spring/src/test/resources/testng.xml | 6 -
tapestry-test/build.gradle | 15 ++
tapestry-upload/build.gradle | 15 ++
tapestry-upload/src/test/resources/testng.xml | 2 -
tapestry-webresources/build.gradle | 18 ++-
.../webresources/GoogleClosureMinimizer.java | 8 +-
.../GoogleClosureMinimizerOptionsProviderImpl.java | 26 +++-
.../services/web/WebResourcesTest.java | 5 +
48 files changed, 791 insertions(+), 523 deletions(-)
create mode 100644 buildSrc/README.md
create mode 100644 buildSrc/src/main/groovy/t5build/NpmTask.groovy
delete mode 100644 buildSrc/src/main/groovy/t5build/SSshExec.groovy
delete mode 100644 buildSrc/src/main/groovy/t5build/Scp.groovy
delete mode 100644 buildSrc/src/main/groovy/t5build/SshTask.groovy
delete mode 100644 buildSrc/src/main/groovy/t5build/TapestryBuildLogic.groovy
delete mode 100644 buildSrc/src/main/groovy/tapestry.ssh-convention.gradle
create mode 100644 tapestry-http/src/test/resources/testng.xml