1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Keep building the asm-all artifact to preserve the compatibility with older versions of ASM
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -60,6 +60,10 @@
// Project descriptions
// -----------------------------------------------------------------------------
+project(':asm-all') {
+ description = parent.description
+}
+
project(':asm') {
description = parent.description
provides = ['org.objectweb.asm', 'org.objectweb.asm.signature']
--- a/settings.gradle
+++ b/settings.gradle
@@ -29,6 +29,7 @@
rootProject.name = 'root'
include(
+ 'asm-all',
'asm',
'asm-analysis',
'asm-commons',
|