This is an automated email from the ASF dual-hosted git repository. dsmiley pushed a commit to branch branch_9x in repository https://gitbox.apache.org/repos/asf/solr.git
commit 0281abc7a0df9ff56a398b966ec9338162324d41 Author: David Smiley <[email protected]> AuthorDate: Sat Jan 31 18:27:21 2026 -0500 modules/analytics: build.gradle: warnings shouldn't error Suppressing intermittent warnings (that fail the build) relating to floating point constants in FilterFunctionTest.multiValueFloatTest --- solr/modules/analytics/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/solr/modules/analytics/build.gradle b/solr/modules/analytics/build.gradle index 393174449b9..25a98bf3325 100644 --- a/solr/modules/analytics/build.gradle +++ b/solr/modules/analytics/build.gradle @@ -35,3 +35,8 @@ dependencies { testImplementation 'junit:junit' testImplementation 'org.slf4j:slf4j-api' } + +// Disable treating warnings as errors for this module +tasks.withType(JavaCompile) { + options.compilerArgs -= "-Werror" +}
