This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch fix/2.x/errProAnnVer in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit c365272ef8173e670a667bddfc112e3bdb7015f8 Author: Volkan Yazıcı <[email protected]> AuthorDate: Mon Sep 1 09:52:14 2025 +0200 Fix the missing Error Prone version --- log4j-parent/pom.xml | 2 +- src/changelog/.2.x.x/3758_fix_error_prone_dep.xml | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/log4j-parent/pom.xml b/log4j-parent/pom.xml index 6343e8e79b..22802a5206 100644 --- a/log4j-parent/pom.xml +++ b/log4j-parent/pom.xml @@ -859,7 +859,7 @@ <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> - <version>${error-prone.version}</version> + <version>${error-prone-annotations.version}</version> <scope>provided</scope> </dependency> diff --git a/src/changelog/.2.x.x/3758_fix_error_prone_dep.xml b/src/changelog/.2.x.x/3758_fix_error_prone_dep.xml new file mode 100644 index 0000000000..917f131abd --- /dev/null +++ b/src/changelog/.2.x.x/3758_fix_error_prone_dep.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<entry xmlns="https://logging.apache.org/xml/ns" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation=" + https://logging.apache.org/xml/ns + https://logging.apache.org/xml/ns/log4j-changelog-0.xsd" + type="fixed"> + <issue id="3758" link="https://github.com/apache/logging-log4j2/issues/3758"/> + <issue id="3779" link="https://github.com/apache/logging-log4j2/issues/3779"/> + <description format="asciidoc"> + Fix the `com.google.errorprone:error_prone_annotations` dependency whose version property gets orphan due to flattening. + </description> +</entry>
