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

borinquenkid pushed a commit to branch 8.0.x-hibernate7
in repository https://gitbox.apache.org/repos/asf/grails-core.git

commit 8568d67494795b57787660fbbcd110097e6be34b
Author: Walter Duque de Estrada <[email protected]>
AuthorDate: Thu Jun 18 18:08:05 2026 -0500

    Remove node_modules from RAT exclusions; add to .gitignore instead
    
    The project does not use NPM. Moving node_modules/ to .gitignore prevents
    local tool installations (e.g. MCP servers) from being scanned by the RAT
    license checker, which is the correct place for local-only ignores.
    
    Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
---
 .gitignore                    | 1 +
 gradle/rat-root-config.gradle | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 3127df613a..be3f3c371d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -67,5 +67,6 @@ etc/bin/results
 .vscode/
 /scratch/
 /local.properties
+node_modules/
 local-tasks.gradle
 local-init.gradle
diff --git a/gradle/rat-root-config.gradle b/gradle/rat-root-config.gradle
index 6a73dc7f42..acd52b23db 100644
--- a/gradle/rat-root-config.gradle
+++ b/gradle/rat-root-config.gradle
@@ -131,7 +131,6 @@ tasks.named('rat') {
             'build-logic/.idea/**', // grails-gradle idea directories
             'build/**', // build directories
             'buildSrc/build/**', // build directories
-            'node_modules/**', // exclude node_modules
             '**/*.log', // exclude log files
             'local-tasks.gradle', // exclude local helper scripts
     ] + 
rootProject.subprojects.collect{"${rootProject.projectDir.relativePath(it.layout.buildDirectory.get().asFile).toString()}/**/*"
 }

Reply via email to