This is an automated email from the ASF dual-hosted git repository. krisden pushed a commit to branch branch_9_0 in repository https://gitbox.apache.org/repos/asf/solr.git
commit 1d913bd70c278fabd058731229abd9f99de057e3 Author: Kevin Risden <[email protected]> AuthorDate: Tue Feb 22 09:00:18 2022 -0500 Fix ltr spotless --- gradle/validation/spotless.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gradle/validation/spotless.gradle b/gradle/validation/spotless.gradle index 1fd073b..3d2eff3 100644 --- a/gradle/validation/spotless.gradle +++ b/gradle/validation/spotless.gradle @@ -44,6 +44,7 @@ configure(project(":solr").subprojects) { prj -> // Exclude certain files (generated ones, mostly). switch (project.path) { + case ":solr:ltr": case ":solr:core": case ":solr:solrj": case ":solr:test-framework": @@ -51,6 +52,7 @@ configure(project(":solr").subprojects) { prj -> break case ":solr:modules:ltr": targetExclude "src/test/**/*.java" + break case ":solr:modules:hdfs": // Exclude Hadoop copied files to make upgrades easier targetExclude "src/**/org/apache/hadoop/**"
