This is an automated email from the ASF dual-hosted git repository.
tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/deltaspike.git
The following commit(s) were added to refs/heads/master by this push:
new d67e6bb15 shade not required anymore
d67e6bb15 is described below
commit d67e6bb1593937955d3ae6d2efbc295915e16928
Author: tandraschko <[email protected]>
AuthorDate: Thu Jan 11 17:28:03 2024 +0100
shade not required anymore
---
deltaspike/modules/proxy/impl-asm/pom.xml | 67 -------------------------------
1 file changed, 67 deletions(-)
diff --git a/deltaspike/modules/proxy/impl-asm/pom.xml
b/deltaspike/modules/proxy/impl-asm/pom.xml
index 57fd3a898..0d79a94b7 100644
--- a/deltaspike/modules/proxy/impl-asm/pom.xml
+++ b/deltaspike/modules/proxy/impl-asm/pom.xml
@@ -43,73 +43,6 @@
<build>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.2.1</version>
- <executions>
- <execution>
- <id>shade-asm</id>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
-
<shadedArtifactAttached>false</shadedArtifactAttached>
-
<createDependencyReducedPom>false</createDependencyReducedPom>
-
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
- <relocations>
- <relocation>
- <pattern>org.objectweb.asm</pattern>
-
<shadedPattern>org.apache.deltaspike.proxy.asm</shadedPattern>
- </relocation>
- </relocations>
- <artifactSet>
- <includes>
- <include>org.ow2.asm:asm</include>
- <include>org.ow2.asm:asm-commons</include>
- <include>org.ow2.asm:asm-tree</include>
- </includes>
- </artifactSet>
- </configuration>
- </execution>
- <execution>
- <!--
- This execution is actually a 1:1 copy from the
parent-code module.
- But we move this over here because it must be
executed AFTER the ASM shading!
- -->
- <id>shade-jakarta</id>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
-
<shadedArtifactAttached>true</shadedArtifactAttached>
-
<shadedClassifierName>jakarta</shadedClassifierName>
-
<createDependencyReducedPom>false</createDependencyReducedPom>
- <relocations>
- <relocation>
- <pattern>javax</pattern>
- <shadedPattern>jakarta</shadedPattern>
- </relocation>
- </relocations>
- </configuration>
- </execution>
-
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>${asm.version}</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-commons</artifactId>
- <version>${asm.version}</version>
- </dependency>
- </dependencies>
- </plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>