From 761e5e2a94aec8b0b897f0beb7f4454a28e4232a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Aug 2025 17:25:31 +0000 Subject: [PATCH 1/2] Bump org.plumelib:options from 1.0.6 to 2.0.3 Bumps [org.plumelib:options](https://github.com/plume-lib/options) from 1.0.6 to 2.0.3. - [Release notes](https://github.com/plume-lib/options/releases) - [Changelog](https://github.com/plume-lib/options/blob/master/CHANGELOG.md) - [Commits](https://github.com/plume-lib/options/compare/v1.0.6...v2.0.3) --- updated-dependencies: - dependency-name: org.plumelib:options dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- checker/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checker/build.gradle b/checker/build.gradle index ce036165f20d..fa723c74a427 100644 --- a/checker/build.gradle +++ b/checker/build.gradle @@ -93,7 +93,7 @@ dependencies { // Required for checker/tests/index-initializedfields/RequireJavadoc.java if (isJava8) { - testImplementation 'org.plumelib:options:1.0.6' + testImplementation 'org.plumelib:options:2.0.3' } else { testImplementation 'org.plumelib:options:2.0.3' } From 26c8a854796162dab25342f481398aa324ad648b Mon Sep 17 00:00:00 2001 From: Werner Dietl Date: Fri, 6 Mar 2026 14:55:11 -0500 Subject: [PATCH 2/2] Simplify dependency declaration for options library Consolidate testImplementation for org.plumelib:options --- checker/build.gradle | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/checker/build.gradle b/checker/build.gradle index fa723c74a427..d681148eae38 100644 --- a/checker/build.gradle +++ b/checker/build.gradle @@ -92,11 +92,7 @@ dependencies { testImplementation 'org.apache.spark:spark-sql_2.12:3.3.2' // Required for checker/tests/index-initializedfields/RequireJavadoc.java - if (isJava8) { - testImplementation 'org.plumelib:options:2.0.3' - } else { - testImplementation 'org.plumelib:options:2.0.3' - } + testImplementation 'org.plumelib:options:2.0.3' testImplementation "junit:junit:${versions.junit}" testImplementation project(':framework-test')