fabalint commented on issue #19:
URL: https://github.com/apache/netbeans-vscode/issues/19#issuecomment-4340786364

   Hi!
   
   This would be nice, as LLM needs the lot, but the work is related to only 
1-10 maven projects (i have ~300 related (: )
   
   An idea is to reuse existing, same-meaning settings (might it be the RedHat 
java extension?), this is from Antigravity cfg:
   **java.import.exclusions** below beans mvn/... project auto-import excludes 
by path matching.
   BUT when a "folders"/"path" is explicitly added, do import the project.
   This "folders" might change dynamically.
   
   {
       "folders": [
           {
               "name": "🌐 all-sources/closed",
               "path": "storage"
           },
           {
               "path": "storage/repo-maven-module01-dir"
           },
           {
               "path": "storage/repo-maven-module02-dir"
           }
       ],
       "settings": {
           "java.import.exclusions": [
               "**/storage/**" // Stops Java from building the 1,000 artifacts 
in the 'ALL SOURCE' folder
           ],
           "java.autobuild.enabled": false,
           "java.import.maven.enabled": false, // Prevents "Antigravity" from 
auto-detecting poms in the background
   
           // --- LLM CONTEXT: SEARCH (B/G) ---
           "search.exclude": {
               "**/target/**": true,
               "**/node_modules/**": true,
               "**/node/**": true,
               "**/bin/**": true,
               "**/.git/**": true
           },
   
           "netbeans.project.jdkhome": "/data/app/JAVA/jdk-8_x64",
       }
   }
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to