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


The following commit(s) were added to refs/heads/master by this push:
     new 59c11c016 Telling Gradle to not upload plastic-asm
59c11c016 is described below

commit 59c11c016a1af6be9a1ece250082d9e021b74a21
Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br>
AuthorDate: Fri Jan 26 09:35:05 2024 -0300

    Telling Gradle to not upload plastic-asm
---
 plastic-asm/build.gradle | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/plastic-asm/build.gradle b/plastic-asm/build.gradle
index abe700156..2d9578136 100644
--- a/plastic-asm/build.gradle
+++ b/plastic-asm/build.gradle
@@ -1,5 +1,5 @@
 plugins {
-    id 'com.github.johnrengelman.shadow' version '7.1.2'
+    id "com.github.johnrengelman.shadow" version "8.1.1"
 }
 
 description = "Shadow asm for plastic"
@@ -8,6 +8,10 @@ jar {
     enabled = false
 }
 
+tasks.withType(PublishToMavenRepository) {
+    enabled = false
+}
+
 shadowJar {
     relocate("org.objectweb.asm", "org.apache.tapestry5.internal.plastic.asm")
     archiveClassifier = ""

Reply via email to