Open talios opened 4 years ago
When a dependency have multiple exclusions, is seems like the order of groupId and artifactId are consistently, ordered inconsistently:
groupId
artifactId
<exclusions> <exclusion> <groupId>com.smxemail</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>smx3</groupId> </exclusion> </exclusions>
The first exclusion, puts groupId first as expected, but the second gets artifactId first.
When a dependency have multiple exclusions, is seems like the order of
groupId
andartifactId
are consistently, ordered inconsistently:The first exclusion, puts
groupId
first as expected, but the second getsartifactId
first.