23
23
import java .io .IOException ;
24
24
import java .io .PrintStream ;
25
25
import java .nio .file .Files ;
26
- import java .util .ArrayList ;
27
26
import java .util .HashMap ;
28
27
import java .util .LinkedHashMap ;
29
28
import java .util .List ;
@@ -54,11 +53,6 @@ public class ScriptRunner implements Closeable {
54
53
*/
55
54
private Map <String , Object > globalVariables ;
56
55
57
- /**
58
- * The additional class path for the script interpreter, never <code>null</code>.
59
- */
60
- private List <String > classPath ;
61
-
62
56
/**
63
57
* The file encoding of the hook scripts or <code>null</code> to use platform encoding.
64
58
*/
@@ -72,7 +66,6 @@ public ScriptRunner() {
72
66
scriptInterpreters .put ("bsh" , new BeanShellScriptInterpreter ());
73
67
scriptInterpreters .put ("groovy" , new GroovyScriptInterpreter ());
74
68
globalVariables = new HashMap <>();
75
- classPath = new ArrayList <>();
76
69
}
77
70
78
71
/**
@@ -104,7 +97,9 @@ public void setGlobalVariable(String name, Object value) {
104
97
* artifacts from the plugin class path.
105
98
*/
106
99
public void setClassPath (List <String > classPath ) {
107
- this .classPath = (classPath != null ) ? new ArrayList <>(classPath ) : new ArrayList <>();
100
+ if (classPath != null && !classPath .isEmpty ()) {
101
+ scriptInterpreters .values ().forEach (scriptInterpreter -> scriptInterpreter .setClassPath (classPath ));
102
+ }
108
103
}
109
104
110
105
/**
@@ -114,7 +109,7 @@ public void setClassPath(List<String> classPath) {
114
109
* default encoding.
115
110
*/
116
111
public void setScriptEncoding (String encoding ) {
117
- this .encoding = (encoding != null && encoding .length () > 0 ) ? encoding : null ;
112
+ this .encoding = (encoding != null && ! encoding .isEmpty () ) ? encoding : null ;
118
113
}
119
114
120
115
/**
@@ -221,7 +216,6 @@ private void executeRun(
221
216
scriptVariables .put ("basedir" , scriptFile .getParentFile ());
222
217
scriptVariables .put ("context" , context );
223
218
224
- interpreter .setClassPath (classPath );
225
219
result = interpreter .evaluateScript (script , scriptVariables , out );
226
220
if (logger != null ) {
227
221
logger .consumeLine ("Finished " + scriptDescription + ": " + scriptFile );
0 commit comments