Hello everyone, putting this under Java since a Maven tag doesn't exist. I have this snippet
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>```
It's getting all the dependencies and creating just one, useful for testing purposes and automated things.
In the module where this `pom.xml` resides I have a `logback-test.xml` file that needs to be inserted, but it gets overridden apparently from the `logback-test.xml` that comes in another module. How can I avoid that the other file has the priority over the actual `lgoback-test.xml` of my current module?