Hello,
I understand that Maven tries to read the files "project.properties" and
"build.properties" on
startup. How would I convince Maven to read "other.props"??
Does a tag like
<properties file="other.props"/>
or so exists?
I' m very well aware that Maven tries to read "build.properties" from
${user.home}. So I could
simply append "other.props" into my user specific build.properties but
that that's not what I
want. Basically I want to be able to do something like:
maven -Dmy.prop.file="other.properties" ..
Also, there should be no difference between properties taken from
"other.properties" and
"project.properties".
I have the feeling that I can't do this. Am I correct?
Regards.