This is an automated email from the ASF dual-hosted git repository. benw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit d9e553a94c9c8b19a7aefce5ae8ca54d3c065e93 Author: Ben Weidig <[email protected]> AuthorDate: Sun Apr 12 12:42:02 2026 +0200 TAP5-2809: exlcude netty from mavenLocal, improve project version guards --- settings.gradle | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/settings.gradle b/settings.gradle index 5bbd41fc4..1cc4d555c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -7,7 +7,12 @@ rootProject.name = 'tapestry-5' dependencyResolutionManagement { repositories { - mavenLocal() + mavenLocal { + content { + // https://github.com/gradle/gradle/issues/18519 + excludeGroup "io.netty" + } + } mavenCentral() maven { name = 'JBoss' @@ -56,7 +61,11 @@ include('plastic', 'tapestry-rest-jackson') if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) { - include('tapestry-latest-java-tests', 'tapestry-spring') + include('tapestry-spring') +} + +if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_21)) { + include('tapestry-latest-java-tests') } def isTravisCI = System.getenv('TRAVIS_JOB_ID') != null
