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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
Description: Use the relocated copy of byte-buddy-maven-plugin to build byte-buddy-dep without the circular dependency
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/byte-buddy-dep/pom.xml
+++ b/byte-buddy-dep/pom.xml
@@ -131,8 +131,8 @@
<!-- Create hashCode/equals method and cache some expensive properties. -->
<plugin>
<groupId>net.bytebuddy</groupId>
- <artifactId>byte-buddy-maven-plugin</artifactId>
- <version>1.18.3</version>
+ <artifactId>byte-buddy-previous-maven-plugin</artifactId>
+ <version>previous</version>
<executions>
<execution>
<phase>compile</phase>
@@ -148,7 +148,7 @@
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.3</version>
+ <version>debian</version>
<plugin>net.bytebuddy.build.HashCodeAndEqualsPlugin$WithNonNullableFields</plugin>
<arguments>
<argument>
@@ -160,13 +160,13 @@
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.3</version>
+ <version>debian</version>
<plugin>net.bytebuddy.build.CachedReturnPlugin</plugin>
</transformation>
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.3</version>
+ <version>debian</version>
<plugin>net.bytebuddy.build.AccessControllerPlugin</plugin>
<arguments>
<argument>
@@ -178,19 +178,19 @@
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.3</version>
+ <version>debian</version>
<plugin>net.bytebuddy.build.DispatcherAnnotationPlugin</plugin>
</transformation>
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.3</version>
+ <version>debian</version>
<plugin>net.bytebuddy.build.RepeatedAnnotationPlugin</plugin>
</transformation>
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.3</version>
+ <version>debian</version>
<plugin>net.bytebuddy.build.SafeVarargsPlugin</plugin>
</transformation>
</transformations>
|