I want to import all property files ending in .properties that are contained in the src/main/resource locations of ALL the jar dependencies that my project has.
I wrote a JUnit test where my context.xml is located in the src / test / resources folder. I set the placeholder property with wildcards, but it does not work.
<context:property-placeholder location="classpath*:*.properties"/>
May I be stupid, but I could not find a solution to my problem on the net. Does anyone know what the correct syntax is?
EDIT:
The root project has maven dependencies that are allowed from my workspace:

And I want to import the module.properties files of dependent projects:

source share