@nxrocks/nx-quarkus
Version:
Nx Plugin to generate, run, package, build (and more) Quarkus projects inside your Nx workspace
35 lines (34 loc) • 945 B
JSON
{
"version": 2,
"$schema": "http://json-schema.org/schema",
"title": "Add Extension executor",
"description": "",
"outputCapture": "pipe",
"type": "object",
"properties": {
"root": {
"description": "The project root",
"type": "string"
},
"ignoreWrapper": {
"description": "Whether or not to use the embedded wrapper (`mvnw`or `gradlew`) to perfom build operations",
"type": "boolean",
"default": false
},
"runFromParentModule": {
"description": "Whether or not to run the (child) module from the context of its parent",
"type": "boolean",
"default": false
},
"args": {
"description": "The argument to be passed to the underlying Quarkus command",
"type": "array",
"default": []
},
"extensions": {
"description": "The extensions to add to the project (comma-separated)",
"type": "string"
}
},
"required": []
}