branch: externals/javaimp
commit c739954cdc2f4c34187b014dc31c215f26eb2b27
Author: Filipp Gunbin <[email protected]>
Commit: Filipp Gunbin <[email protected]>

    Add more options to default value of javaimp-gradle-args
---
 javaimp-gradle.el | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/javaimp-gradle.el b/javaimp-gradle.el
index 6efff51b32..892143d3f7 100644
--- a/javaimp-gradle.el
+++ b/javaimp-gradle.el
@@ -31,6 +31,12 @@ gradlew (Gradle wrapper), it is used in preference."
 (defcustom javaimp-gradle-args
   '("-Dorg.gradle.caching=false"        ;CLI option --build-cache
     "-Dorg.gradle.configuration-cache=false" ;CLI option --configuration-cache
+    "-Dorg.gradle.unsafe.configuration-cache=false" ;old name for it
+    ;; As of Feb 2026, isolated projects is in pre-alpha, so only the
+    ;; "unsafe" property exists.  Most likely it will be renamed by
+    ;; dropping the "unsafe" part, so add both.
+    "-Dorg.gradle.isolated-projects=false"
+    "-Dorg.gradle.unsafe.isolated-projects=false"
     )
   "Args to pass to gradle invocation.
 

Reply via email to