Telling Gradle to not upload plastic-asm
diff --git a/plastic-asm/build.gradle b/plastic-asm/build.gradle
index abe7001..2d95781 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 @@
enabled = false
}
+tasks.withType(PublishToMavenRepository) {
+ enabled = false
+}
+
shadowJar {
relocate("org.objectweb.asm", "org.apache.tapestry5.internal.plastic.asm")
archiveClassifier = ""