What is priority of conflicting resources from maven dependncies? If any? Say I have following pom.xml :
<depndency>
<artifactId>a</artifactId>
</dependency>
<depndency>
<artifactId>b</artifactId>
</dependency>
both dependencies (a,b) have following structure:
pom.xml
src/main/resources/META-INF/logo.png
By experiment I see that logo.png in resulting JAR comes from dependency a. Thus is is must-be? Or just by random?