Skip to content

Commit

Permalink
Extend regex to include inner classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Nov 3, 2024
1 parent 732087c commit f164ddd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions byte-buddy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -445,10 +445,10 @@
<artifact>org\.ow2\.asm:.*</artifact>
</artifacts>
<includes>
<include>org/objectweb/asm/[a-zA-Z\.]+</include>
<include>org/objectweb/asm/signature/[a-zA-Z\.]+</include>
<include>org/objectweb/asm/[a-zA-Z0-9$\.]+</include>
<include>org/objectweb/asm/signature/[a-zA-Z0-9$\.]+</include>
<include>org/objectweb/asm/commons/.*Remapper.*</include>
<include>org/objectweb/asm/commons/ModuleHashesAttribute.class</include>
<include>org/objectweb/asm/commons/ModuleHashesAttribute[a-zA-Z0-9$\.]]*.class</include>

This comment has been minimized.

Copy link
@Marcono1234

Marcono1234 Nov 3, 2024

Contributor

Is the ]]* a typo? Should it just be ]*?

I am afraid now this won't match the ModuleHashesAttribute.class at all.

</includes>
</configuration>
</execution>
Expand Down

0 comments on commit f164ddd

Please sign in to comment.