'How do I inherit or use the value of key of common.conf file in application.conf in gobblin conf/yarn

I am trying to move few properties (keys & values) in application.conf file in gobblin conf/yarn into common.conf file. But not sure how I can inherit/use these values in application.conf

For example: Common.conf is as follows

server.port = 1111
server.host = localhost

In application.conf

server.port = 
server.host = #I want values in common.conf to reflect/ to be inherited here

I tried giving complete path followed by key but non of the following worked

server.port =${path\common.conf\server.port}
server.port = ${path\common.conf+server.port}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source