This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch MNG-7354 in repository https://gitbox.apache.org/repos/asf/maven.git
commit e34a954aca7d2d30f480c799225b5f041ee2056b Author: Guillaume Nodet <[email protected]> AuthorDate: Mon Dec 13 13:44:33 2021 +0100 Make CLIreportingUtils#getBuildProperties() public --- .../src/main/java/org/apache/maven/cli/CLIReportingUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java b/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java index 57be196..009a251 100644 --- a/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java +++ b/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java @@ -116,7 +116,7 @@ public final class CLIReportingUtils return ( s != null ? ( s.startsWith( "${" ) && s.endsWith( "}" ) ? null : s ) : null ); } - static Properties getBuildProperties() + public static Properties getBuildProperties() { Properties properties = new Properties();
