Skip to content

Commit 8b3992a

Browse files
[MSHARED-1368] Synchronize interpreter execution
1 parent 91b11c3 commit 8b3992a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/release-drafter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818
_extends: maven-gh-actions-shared
19-
tag-template: maven-release-$NEXT_MINOR_VERSION
19+
tag-template: maven-script-interpreter-$NEXT_MINOR_VERSION

src/main/java/org/apache/maven/shared/scriptinterpreter/ScriptRunner.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
*/
4141
public class ScriptRunner implements Closeable {
4242

43+
private static final Object LOCK = new Object();
44+
4345
private static final Logger LOG = LoggerFactory.getLogger(ScriptRunner.class);
4446

4547
/**
@@ -216,7 +218,9 @@ private void executeRun(
216218
scriptVariables.put("basedir", scriptFile.getParentFile());
217219
scriptVariables.put("context", context);
218220

219-
result = interpreter.evaluateScript(script, scriptVariables, out);
221+
synchronized (LOCK) {
222+
result = interpreter.evaluateScript(script, scriptVariables, out);
223+
}
220224
if (logger != null) {
221225
logger.consumeLine("Finished " + scriptDescription + ": " + scriptFile);
222226
}

0 commit comments

Comments
 (0)