I have one property file called environment.properties
. In this file I have one entry:
applicationUrl = ${applicationUrlFromPom}
I want to use maven resource plugin setting in pom file, so that this value could be set at build time and I can use this value from properties file in Java.
thnx in advance