This is an automated email from the ASF dual-hosted git repository. ramanathan1504 pushed a commit to branch update-target-sdk in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git
commit f9511943d32fc03cc2689fb537fef2583e87f254 Author: Ramanathan <[email protected]> AuthorDate: Mon Sep 7 05:35:58 2026 +0530 Update compile and target SDK versions to 36; add dependency management for commons-io 2.17.0 --- log4j-samples-android/app/build.gradle | 4 ++-- log4j-samples-flume-embedded/pom.xml | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/log4j-samples-android/app/build.gradle b/log4j-samples-android/app/build.gradle index 6a47ebb..b25140e 100644 --- a/log4j-samples-android/app/build.gradle +++ b/log4j-samples-android/app/build.gradle @@ -19,13 +19,13 @@ plugins { } android { - compileSdk = 34 + compileSdk = 36 namespace = "org.apache.logging.log4j.samples.android" defaultConfig { applicationId "org.apache.logging.log4j.samples.android" minSdk = 26 - targetSdk = 34 + targetSdk = 36 versionCode 1 versionName "1.0" diff --git a/log4j-samples-flume-embedded/pom.xml b/log4j-samples-flume-embedded/pom.xml index 45dfa51..09ba24e 100644 --- a/log4j-samples-flume-embedded/pom.xml +++ b/log4j-samples-flume-embedded/pom.xml @@ -25,6 +25,17 @@ <artifactId>log4j-samples-flume-embedded</artifactId> <packaging>war</packaging> <name>Apache Log4j Samples: Flume - Embedded</name> + <dependencyManagement> + <dependencies> + <!-- Flume 1.11.0 resolves commons-io 2.11.0, below the 2.17.0 that + spring-cloud-dependencies pulls in via curator/zookeeper --> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.17.0</version> + </dependency> + </dependencies> + </dependencyManagement> <dependencies> <dependency> <groupId>org.jspecify</groupId>
