Skip to content

Commit

Permalink
Adjust substitution API to include original byte code expression.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Feb 8, 2023
1 parent aef0241 commit 9630ce0
Show file tree
Hide file tree
Showing 10 changed files with 59 additions and 17 deletions.
2 changes: 1 addition & 1 deletion byte-buddy-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy-agent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion byte-buddy-android-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy-android-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion byte-buddy-android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy-android</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion byte-buddy-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy-benchmark</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion byte-buddy-dep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<!--
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion byte-buddy-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy-gradle-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion byte-buddy-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion byte-buddy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
</parent>

<artifactId>byte-buddy</artifactId>
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-parent</artifactId>
<version>1.12.24-SNAPSHOT</version>
<version>1.13.0-SNAPSHOT</version>
<packaging>pom</packaging>

<inceptionYear>2014</inceptionYear>
Expand Down Expand Up @@ -1134,6 +1134,11 @@
<onlyBinaryIncompatible>true</onlyBinaryIncompatible>
<breakBuildBasedOnSemanticVersioning>true</breakBuildBasedOnSemanticVersioning>
<excludes>
<exclude>net.bytebuddy.asm.MemberSubstitution$Replacement$Binding</exclude>
<exclude>net.bytebuddy.asm.MemberSubstitution$Substitution</exclude>
<exclude>net.bytebuddy.asm.MemberSubstitution$Substitution$Chain$Step</exclude>
<exclude>net.bytebuddy.asm.MemberSubstitution$Substitution$Chain$Step$ForField$Read</exclude>
<exclude>net.bytebuddy.asm.MemberSubstitution$Substitution$Chain$Step$ForField$Write</exclude>
<exclude>net.bytebuddy.asm.MemberSubstitution$Substitution$Chain$Step$ForArgumentLoading$Factory</exclude>
</excludes>
</parameter>
Expand Down

0 comments on commit 9630ce0

Please sign in to comment.