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
having a property which contains multiple property-placeholders, at least one of them is a CI-Friendly placeholder (revision, sha1, changelist) and at least on of the is a non-CI-Friendly placeholder, eg: <test1.prop>HELLO${hello}${changelist}</test1.prop>
Running mvn org.codehaus.mojo:flatten-maven-plugin:1.6.0:flatten process-resources -Dflatten.mode=resolveCiFriendliesOnly -Drevision=1.2.3 -Dchangelist='' -Dsha1='' on the following pom:
As seen, test2.prop does not initially contains a ci-friendly placeholder and is not modified my the plugin. But as test1.prop contains one, the non-ci-friendly has the ${ and } stripped.
The text was updated successfully, but these errors were encountered:
Hi,
having a property which contains multiple property-placeholders, at least one of them is a CI-Friendly placeholder (revision, sha1, changelist) and at least on of the is a non-CI-Friendly placeholder, eg:
<test1.prop>HELLO${hello}${changelist}</test1.prop>
Running
mvn org.codehaus.mojo:flatten-maven-plugin:1.6.0:flatten process-resources -Dflatten.mode=resolveCiFriendliesOnly -Drevision=1.2.3 -Dchangelist='' -Dsha1=''
on the following pom:Produces the following testX.prop-values in the flattened pom:
As seen, test2.prop does not initially contains a ci-friendly placeholder and is not modified my the plugin. But as test1.prop contains one, the non-ci-friendly has the
${
and}
stripped.The text was updated successfully, but these errors were encountered: