snow_leopard
snow_leopard

Reputation: 1556

maven pom.xml exclude pattern with $

Just want to know what exactly is the meaning of following exclude pattern in pom.xml ?

 <configuration>
              <excludes>
                  <exclude>**/*$*</exclude>
               </excludes>
 </configuration>

Upvotes: 1

Views: 301

Answers (1)

MariuszS
MariuszS

Reputation: 31595

I can only guess - this is for removing inner classes from plugin.

Upvotes: 2

Related Questions