include application-properties from multiple modules in maven multi-module spring-boot executable jar
问题 we have a maven multi-module pom project with a core-module where i want to keep common application.properties, like database-access, email-gateways etc. Is it possible to integrate those application*.properties in the executable jar of the other modules as well (jars built by spring-boot-maven-plugin )? when taking a look into the built jar, you can see that only the module's resources are integrated, all other modules are ignored. Thanks 来源: https://stackoverflow.com/questions/49856000