Question: Do we only need to resolve the @{xxx} properties that are referenced in Maven properties? Or do we also need to handle them in the configuration parameters for the plugin (such as the jvmOptions parameter)?
Answer: Yes, we should handle them in other config parameters for consistency. I have implemented the behavior for the jvmOptions and the bootstrapProperties in this PR.
Also, I presume we do not need to look for and resolve these types of references in config files specified by other parameters such as jvmOptionsFile. Correct me if I am wrong.
Answer: We should not look for / resolve these references in config files other than pom.xml.
Fixes #1705 @bmarwell
Question: Do we only need to resolve the
@{xxx}
properties that are referenced in Maven properties? Or do we also need to handle them in the configuration parameters for the plugin (such as thejvmOptions
parameter)?Answer: Yes, we should handle them in other config parameters for consistency. I have implemented the behavior for the
jvmOptions
and thebootstrapProperties
in this PR.Also, I presume we do not need to look for and resolve these types of references in config files specified by other parameters such as
jvmOptionsFile
. Correct me if I am wrong.Answer: We should not look for / resolve these references in config files other than pom.xml.