diff options
Diffstat (limited to 'libx/pom.xml')
-rw-r--r-- | libx/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libx/pom.xml b/libx/pom.xml index c30de98e0..4c4817e79 100644 --- a/libx/pom.xml +++ b/libx/pom.xml @@ -175,6 +175,28 @@ <destFileName>jdtcore-for-aspectj-src.zip</destFileName> </artifactItem> + <artifactItem> + <!-- Available from GitHub Packages (needs special repository declaration) --> + <groupId>org.aspectj</groupId> + <artifactId>asm-renamed</artifactId> + <version>${asm.version}</version> + <type>jar</type> + <overWrite>false</overWrite> + <outputDirectory>asm</outputDirectory> + <destFileName>asm-${asm.version}.renamed.jar</destFileName> + </artifactItem> + <artifactItem> + <!-- Available from GitHub Packages (needs special repository declaration) --> + <groupId>org.aspectj</groupId> + <artifactId>asm-renamed</artifactId> + <version>${asm.version}</version> + <type>java-source</type> + <classifier>sources</classifier> + <overWrite>false</overWrite> + <outputDirectory>asm</outputDirectory> + <destFileName>asm-${asm.version}.renamed-src.zip</destFileName> + </artifactItem> + <!-- How relevant is JRockit in 2021? https://en.wikipedia.org/wiki/JRockit @@ -538,6 +560,7 @@ <directory>.</directory> <includes> <include>ant/**</include> + <include>asm/**</include> <include>commons/**</include> <include>jarjar/**</include> <include>jdiff/**</include> @@ -558,6 +581,10 @@ <dependencies> <dependency> <groupId>org.aspectj</groupId> + <artifactId>asm-renamed</artifactId> + </dependency> + <dependency> + <groupId>org.aspectj</groupId> <artifactId>org.eclipse.jdt.core</artifactId> </dependency> </dependencies> |