You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm guessing you know this since the code is clearly broken. But user properties are not filtered properly.
if if set <my.prop>foo</my.prop> in the pom and put ${my.prop} in conf.yml and then invoke mvn with:
mvn -Dmy.prop=bar clean install then ${my.prop} will be expanded to foo rather than bar.
The text was updated successfully, but these errors were encountered:
You shouldn't be calling p.putAll(System.getProperties()); IMO - this has already been done for you when you get the project properties. At a minimum you should call this after getting the project properties
I'm guessing you know this since the code is clearly broken. But user properties are not filtered properly.
if if set <my.prop>foo</my.prop> in the pom and put ${my.prop} in conf.yml and then invoke mvn with:
mvn -Dmy.prop=bar clean install then ${my.prop} will be expanded to foo rather than bar.
The text was updated successfully, but these errors were encountered: