I am using spring boot applications for my project. In one of the project, I need to include one config.properties file in the jar root path. enter image description here Because In my project, one of external jar is expecting this property file from file system, means root path of project.
propertieFile.load(new FileInputStream("config.properties"));
Actually I am having this property file in eclipse maven project, but its ignored while build. enter image description here Can any one of you please help. Thanks in advance.