Pankraz76 commented on code in PR #2373: URL: https://github.com/apache/maven/pull/2373#discussion_r2131963449
########## impl/maven-impl/src/main/java/org/apache/maven/impl/model/DefaultModelInterpolator.java: ########## @@ -216,47 +197,40 @@ String projectProperty(Model model, Path projectDir, String subExpr, boolean pre return projectDir.toAbsolutePath().toString(); } else if (subExpr.startsWith("basedir.")) { try { - Object value = ReflectionValueExtractor.evaluate(subExpr, projectDir.toAbsolutePath(), true); + Object value = evaluate(subExpr, projectDir.toAbsolutePath(), true); if (value != null) { return value.toString(); } - } catch (Exception e) { Review Comment: - https://github.com/pmd/pmd/issues/5801 -- 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