@jnxplus/nx-maven
Version:
[](https://badge.fury.io/js/@jnxplus%2Fnx-maven)
40 lines (39 loc) • 1.24 kB
JSON
{
"version": 2,
"outputCapture": "pipe",
"$schema": "http://json-schema.org/schema",
"title": "Run Task executor",
"description": "",
"type": "object",
"properties": {
"task": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": { "type": "string" }
}
],
"description": "Task to be executed"
},
"outputDirLocalRepo": {
"type": "string",
"description": "The artifacts created during the `install phase` will be placed in this sub-directory of the Maven local repository (dynamically calculated)"
},
"skipProject": {
"type": "boolean",
"description": "Skip specifying a project by generating `-pl :project` part"
},
"cwd": {
"type": "string",
"description": "Current working directory of the command. If it's not specified the command will run in the maven working directory, if a relative path is specified the command will run in that path relative to the maven working directory and if it's an absolute path the command will run in that path."
},
"skipExecutor": {
"type": "boolean",
"description": "Skip executor run"
}
},
"required": ["task"]
}