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

hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/main by this push:
     new eb1f394f1c Remove the deprecated java.compiler=NONE property #6725 
(#6727)
eb1f394f1c is described below

commit eb1f394f1c565841234a7bac0d4e94d6f9686768
Author: Nicolas Adment <[email protected]>
AuthorDate: Sat Mar 7 09:04:10 2026 +0100

    Remove the deprecated java.compiler=NONE property #6725 (#6727)
---
 assemblies/static/src/main/resources/hop                          | 4 ++--
 assemblies/static/src/main/resources/hop-conf.bat                 | 2 +-
 assemblies/static/src/main/resources/hop-conf.sh                  | 2 +-
 assemblies/static/src/main/resources/hop-encrypt.bat              | 2 +-
 assemblies/static/src/main/resources/hop-encrypt.sh               | 2 +-
 assemblies/static/src/main/resources/hop-gui.bat                  | 2 +-
 assemblies/static/src/main/resources/hop-gui.sh                   | 2 +-
 assemblies/static/src/main/resources/hop-import.bat               | 2 +-
 assemblies/static/src/main/resources/hop-import.sh                | 2 +-
 assemblies/static/src/main/resources/hop-run.bat                  | 2 +-
 assemblies/static/src/main/resources/hop-run.sh                   | 2 +-
 assemblies/static/src/main/resources/hop-search.bat               | 2 +-
 assemblies/static/src/main/resources/hop-search.sh                | 2 +-
 assemblies/static/src/main/resources/hop-server.bat               | 2 +-
 assemblies/static/src/main/resources/hop-server.sh                | 2 +-
 assemblies/static/src/main/resources/hop.bat                      | 4 ++--
 docs/hop-dev-manual/modules/ROOT/pages/setup-dev-environment.adoc | 2 +-
 17 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/assemblies/static/src/main/resources/hop 
b/assemblies/static/src/main/resources/hop
index 2ef09c5a5e..ace42c87dc 100755
--- a/assemblies/static/src/main/resources/hop
+++ b/assemblies/static/src/main/resources/hop
@@ -43,11 +43,11 @@ for arg in "$@"
 do
   if [ "$arg" = "--dev-debug" ]
   then
-    HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5010"
+    HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5010"
   fi
   if [ "$arg" = "--dev-debug-wait" ]
   then
-    HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5010"
+    HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5010"
   fi
 done
 
diff --git a/assemblies/static/src/main/resources/hop-conf.bat 
b/assemblies/static/src/main/resources/hop-conf.bat
index f8efce8995..933708aa5a 100644
--- a/assemblies/static/src/main/resources/hop-conf.bat
+++ b/assemblies/static/src/main/resources/hop-conf.bat
@@ -43,7 +43,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-conf.sh 
b/assemblies/static/src/main/resources/hop-conf.sh
index 2a3aab1b72..b762787e65 100755
--- a/assemblies/static/src/main/resources/hop-conf.sh
+++ b/assemblies/static/src/main/resources/hop-conf.sh
@@ -39,7 +39,7 @@ fi
 
 # optional line for attaching a debugger
 #
-#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
+#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
 
 # Add HOP variables if they're set:
 #
diff --git a/assemblies/static/src/main/resources/hop-encrypt.bat 
b/assemblies/static/src/main/resources/hop-encrypt.bat
index 24b644fa43..8eecda5f78 100644
--- a/assemblies/static/src/main/resources/hop-encrypt.bat
+++ b/assemblies/static/src/main/resources/hop-encrypt.bat
@@ -44,7 +44,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-encrypt.sh 
b/assemblies/static/src/main/resources/hop-encrypt.sh
index e33db61148..c2b112d09a 100755
--- a/assemblies/static/src/main/resources/hop-encrypt.sh
+++ b/assemblies/static/src/main/resources/hop-encrypt.sh
@@ -39,7 +39,7 @@ fi
 
 # optional line for attaching a debugger
 #
-# HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
+# HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
 
 # Add HOP variables if they're set:
 #
diff --git a/assemblies/static/src/main/resources/hop-gui.bat 
b/assemblies/static/src/main/resources/hop-gui.bat
index b4ef19d2c5..59bf3473db 100755
--- a/assemblies/static/src/main/resources/hop-gui.bat
+++ b/assemblies/static/src/main/resources/hop-gui.bat
@@ -64,7 +64,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-gui.sh 
b/assemblies/static/src/main/resources/hop-gui.sh
index ff120be589..05461f7e81 100755
--- a/assemblies/static/src/main/resources/hop-gui.sh
+++ b/assemblies/static/src/main/resources/hop-gui.sh
@@ -40,7 +40,7 @@ fi
 # optional line for attaching a debugger
 #
 if [ "$1" = "debug" ] || [ "$1" = "DEBUG" ]; then
-  HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
+  HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
 fi
 
 # Add HOP variables if they're set:
diff --git a/assemblies/static/src/main/resources/hop-import.bat 
b/assemblies/static/src/main/resources/hop-import.bat
index 990f573ccd..9ba9464885 100644
--- a/assemblies/static/src/main/resources/hop-import.bat
+++ b/assemblies/static/src/main/resources/hop-import.bat
@@ -44,7 +44,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-import.sh 
b/assemblies/static/src/main/resources/hop-import.sh
index 5a6cfc04b1..f2a5a1e49a 100755
--- a/assemblies/static/src/main/resources/hop-import.sh
+++ b/assemblies/static/src/main/resources/hop-import.sh
@@ -39,7 +39,7 @@ fi
 
 # optional line for attaching a debugger
 #
-#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
+#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
 
 # Add HOP variables if they're set:
 #
diff --git a/assemblies/static/src/main/resources/hop-run.bat 
b/assemblies/static/src/main/resources/hop-run.bat
index e8ffeec8ef..3cfb680c2d 100755
--- a/assemblies/static/src/main/resources/hop-run.bat
+++ b/assemblies/static/src/main/resources/hop-run.bat
@@ -63,7 +63,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-run.sh 
b/assemblies/static/src/main/resources/hop-run.sh
index 69b3172a01..635e6bc53f 100755
--- a/assemblies/static/src/main/resources/hop-run.sh
+++ b/assemblies/static/src/main/resources/hop-run.sh
@@ -39,7 +39,7 @@ fi
 
 # optional line for attaching a debugger
 #
-#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5006"
+#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5006"
 
 # Add HOP variables if they're set:
 #
diff --git a/assemblies/static/src/main/resources/hop-search.bat 
b/assemblies/static/src/main/resources/hop-search.bat
index 8e59b9ebdb..9f0f98a47c 100644
--- a/assemblies/static/src/main/resources/hop-search.bat
+++ b/assemblies/static/src/main/resources/hop-search.bat
@@ -43,7 +43,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-search.sh 
b/assemblies/static/src/main/resources/hop-search.sh
index ec11d4e4b4..0046658907 100755
--- a/assemblies/static/src/main/resources/hop-search.sh
+++ b/assemblies/static/src/main/resources/hop-search.sh
@@ -39,7 +39,7 @@ fi
 
 # optional line for attaching a debugger
 #
-#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
+#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009"
 
 # Add HOP variables if they're set:
 #
diff --git a/assemblies/static/src/main/resources/hop-server.bat 
b/assemblies/static/src/main/resources/hop-server.bat
index 9c7241a090..13244b5a67 100644
--- a/assemblies/static/src/main/resources/hop-server.bat
+++ b/assemblies/static/src/main/resources/hop-server.bat
@@ -46,7 +46,7 @@ REM If the user passes in DEBUG as the first parameter, it 
starts Hop in debugge
 REM to allow attaching a debugger to step code.
 if [%1]==[DEBUG] (
 REM # optional line for attaching a debugger
-set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
+set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5009)
 
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_FOLDER%"=="" (
diff --git a/assemblies/static/src/main/resources/hop-server.sh 
b/assemblies/static/src/main/resources/hop-server.sh
index b1307e96ac..2883148f3d 100755
--- a/assemblies/static/src/main/resources/hop-server.sh
+++ b/assemblies/static/src/main/resources/hop-server.sh
@@ -39,7 +39,7 @@ fi
 
 # optional line for attaching a debugger
 #
-#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5007"
+#HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5007"
 
 # Add HOP variables if they're set:
 #
diff --git a/assemblies/static/src/main/resources/hop.bat 
b/assemblies/static/src/main/resources/hop.bat
index 5d03e14b9c..04be8a57d6 100755
--- a/assemblies/static/src/main/resources/hop.bat
+++ b/assemblies/static/src/main/resources/hop.bat
@@ -48,10 +48,10 @@ REM See if we need to enable some remote debugging options 
for our developers.
 REM
 FOR %%a in (%*) DO (
   if "%%~a" == "--dev-debug" (
-    set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5010
+    set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5010
   )
   if "%%~a" == "--dev-debug-wait" (
-    set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5010
+    set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5010
   )
 )
 
diff --git a/docs/hop-dev-manual/modules/ROOT/pages/setup-dev-environment.adoc 
b/docs/hop-dev-manual/modules/ROOT/pages/setup-dev-environment.adoc
index f6be280f79..81a699933f 100644
--- a/docs/hop-dev-manual/modules/ROOT/pages/setup-dev-environment.adoc
+++ b/docs/hop-dev-manual/modules/ROOT/pages/setup-dev-environment.adoc
@@ -159,7 +159,7 @@ To debug the Hop GUI or a long running pipeline or workflow 
you can change the l
 ----
 # optional line for attaching a debugger
 #
-HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
+HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
 ----
 
 == Debugging on Windows

Reply via email to