This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/master by this push:
new 9ca4304901 HOP-3962 Add annotation to HOP_PLUGIN_BASE_FOLDERS variable
new 782aa9a83b Merge pull request #1504 from nadment/FOP-3962
9ca4304901 is described below
commit 9ca4304901b4aa458914ccacea19e2545bceba3c
Author: Nicolas Adment <[email protected]>
AuthorDate: Thu May 26 18:31:08 2022 +0200
HOP-3962 Add annotation to HOP_PLUGIN_BASE_FOLDERS variable
---
core/src/main/java/org/apache/hop/core/Const.java | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/core/src/main/java/org/apache/hop/core/Const.java
b/core/src/main/java/org/apache/hop/core/Const.java
index 77be792605..aa7969a8cf 100644
--- a/core/src/main/java/org/apache/hop/core/Const.java
+++ b/core/src/main/java/org/apache/hop/core/Const.java
@@ -536,14 +536,12 @@ public class Const {
public static final String HOP_PLUGIN_CLASSES = "HOP_PLUGIN_CLASSES";
/**
- * Name of the environment variable to specify additional packaged to scan
for plugin annotations
- * (warning: slow!)
+ * Name of the environment variable to specify alternative location for
plugins.
*/
@Variable(
+ scope = VariableScope.SYSTEM,
description =
- "A comma delimited list of packages to scan for plugin annotations
(warning: slow!!)")
- public static final String HOP_PLUGIN_PACKAGES = "HOP_PLUGIN_PACKAGES";
-
+ "The variable which points to the alternative location for plugins.")
public static final String HOP_PLUGIN_BASE_FOLDERS =
"HOP_PLUGIN_BASE_FOLDERS";
/**