This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch dependabot/maven/log4j-samples-graalvm/org.apache.logging-logging-parent-12.1.0 in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git
commit 6525e6fad735d71788e6a54876c4ee010ea8c378 Author: Piotr P. Karwasz <pkarwasz-git...@apache.org> AuthorDate: Wed Apr 9 10:31:37 2025 +0200 Remove Error Prone workaround --- log4j-samples-graalvm/pom.xml | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/log4j-samples-graalvm/pom.xml b/log4j-samples-graalvm/pom.xml index 0d5d4a5..f8949c3 100644 --- a/log4j-samples-graalvm/pom.xml +++ b/log4j-samples-graalvm/pom.xml @@ -171,40 +171,6 @@ <build> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <executions> - <execution> - <id>remove-obsolete-configuration</id> - <goals> - <goal>enforce</goal> - </goals> - <configuration> - <rules> - <requireProperty> - <property>project.parent.version</property> - <regex>12.0.0</regex> - <message>Remove obsolete configurations, see `TODO` comments.</message> - </requireProperty> - </rules> - </configuration> - </execution> - </executions> - </plugin> - - <!-- TODO: Remove after `logging-parent` version `12.1.0` is out --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <compilerArgs combine.children="append"> - <!-- Workaround Error Prone breaking change --> - <arg>--should-stop=ifError=FLOW</arg> - </compilerArgs> - </configuration> - </plugin> - <!-- ~ Step 0: we add per-profile resource. -->