
Currently there is no possibility to setup options for 'NodeJS Plugin' https://wiki.jenkins.io/display/JENKINS/NodeJS+Plugin But 'NodeJS Plugin' is widely used to get ability of executing JS in build step So this patch introduces configuration options for 'Execute NodeJS script' build step. Change-Id: Ie0a9863f235d4199a6de350036394b8d054eb1e9
11 lines
379 B
XML
11 lines
379 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<builders>
|
|
<jenkins.plugins.nodejs.NodeJSCommandInterpreter>
|
|
<command>console.log('Some output');</command>
|
|
<nodeJSInstallationName>NodeJS_8.1</nodeJSInstallationName>
|
|
<configId>e3757442-7c21-4a65-a1ff-6c70f5c6df34</configId>
|
|
</jenkins.plugins.nodejs.NodeJSCommandInterpreter>
|
|
</builders>
|
|
</project>
|