You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2020/12/23 11:44:30 UTC

[lucene-solr] 01/11: Add remaining Lucene modules so that it's known how much work is left.

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch jira/LUCENE-9570
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit ef62fbad2a51d186bb165ca1f4411a3ab04fe496
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Wed Dec 23 10:13:46 2020 +0100

    Add remaining Lucene modules so that it's known how much work is left.
---
 gradle/validation/spotless.gradle | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gradle/validation/spotless.gradle b/gradle/validation/spotless.gradle
index 06a1176..084b3e5 100644
--- a/gradle/validation/spotless.gradle
+++ b/gradle/validation/spotless.gradle
@@ -25,6 +25,8 @@ allprojects { prj ->
   plugins.withType(JavaPlugin) {
     prj.apply plugin: 'com.diffplug.spotless'
 
+    println "case \"" + prj.path + '"'
+
     spotless {
       java {
         // TODO: work out how to have multiple different header files (we have
@@ -73,6 +75,36 @@ allprojects { prj ->
             break
 
           // All others - disable reformatting/ checks for now.
+          case ":lucene:analysis:icu":
+          case ":lucene:analysis:kuromoji":
+          case ":lucene:analysis:morfologik":
+          case ":lucene:analysis:nori":
+          case ":lucene:analysis:opennlp":
+          case ":lucene:analysis:phonetic":
+          case ":lucene:analysis:smartcn":
+          case ":lucene:analysis:stempel":
+          case ":lucene:backward-codecs":
+          case ":lucene:benchmark":
+          case ":lucene:classification":
+          case ":lucene:codecs":
+          case ":lucene:demo":
+          case ":lucene:expressions":
+          case ":lucene:facet":
+          case ":lucene:grouping":
+          case ":lucene:join":
+          case ":lucene:luke":
+          case ":lucene:memory":
+          case ":lucene:misc":
+          case ":lucene:monitor":
+          case ":lucene:queries":
+          case ":lucene:queryparser":
+          case ":lucene:replicator":
+          case ":lucene:sandbox":
+          case ":lucene:spatial3d":
+          case ":lucene:spatial-extras":
+          case ":lucene:suggest":
+          case ":lucene:test-framework":
+
           default:
             target 'non-existing/**'
             break