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:34 UTC

[lucene-solr] 05/11: Simplify includes a bit.

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 8b76dd4599f552a6bc1f8e97d423a83dab03f135
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Wed Dec 23 11:20:04 2020 +0100

    Simplify includes a bit.
---
 gradle/validation/spotless.gradle | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gradle/validation/spotless.gradle b/gradle/validation/spotless.gradle
index 318a2c9..7276c9d 100644
--- a/gradle/validation/spotless.gradle
+++ b/gradle/validation/spotless.gradle
@@ -38,15 +38,14 @@ allprojects { prj ->
         switch (project.path) {
           // These modules are complete - all sources scanned.
           case ":lucene:highlighter":
-            target "src/**"
-            targetExclude "**/resources/**", "**/overview.html", "**/CambridgeMA.utf8"
+            target "src/java/**", "src/test/**"
+            targetExclude "**/overview.html", "**/CambridgeMA.utf8"
             break
 
           // Partially complete.
           case ":lucene:core":
             target "src/java/**", "src/test/**"
-            targetExclude "**/resources/**",
-                "**/overview.html",
+            targetExclude "**/overview.html",
                 "**/META-INF/**",
                 "**/StandardTokenizerImpl.jflex",
                 "**/StandardTokenizerImpl.java",