mkolesnikov commented on code in PR #202:
URL: https://github.com/apache/maven-release/pull/202#discussion_r1413526292


##########
maven-release-manager/src/main/java/org/apache/maven/shared/release/transform/jdom2/JDomModel.java:
##########
@@ -198,7 +199,17 @@ public void setVersion(String version) {
                         
AbstractRewritePomsPhase.extractPropertyFromExpression(versionElement.getTextNormalize());
                 Properties properties = getProperties();
                 if (properties != null) {
-                    properties.computeIfPresent(ciFriendlyPropertyName, (k, v) 
-> version);
+                    String sha1 = properties.getProperty("sha1", "");
+                    String changelist = properties.getProperty("changelist", 
"");
+                    properties.setProperty(
+                            ciFriendlyPropertyName,
+                            // assume that everybody follows the example and 
properties are simply chained
+                            version.replaceAll(sha1, 
"").replaceAll(changelist, ""));

Review Comment:
   `version` is a string, `sha1` and `changelist` are properties which can be 
only strings



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to