@nxrocks/nx-quarkus
Version:
Nx Plugin to generate, run, package, build (and more) Quarkus projects inside your Nx workspace
35 lines (34 loc) • 1.01 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"outputCapture": "pipe",
"$id": "@nxrocks/nx-quarkus:link",
"description": "Link Projects Generator.",
"title": "Creates an implicit link between a `source` Quarkus project and another `target` project within the workspace ",
"type": "object",
"properties": {
"sourceProjectName": {
"type": "string",
"description": "The name of the source (Quarkus) project to link from.",
"$default": {
"$source": "argv",
"index": 0
},
"x-dropdown": "projects",
"x-prompt": "What name of the source (Quarkus) project to link from?"
},
"targetProjectName": {
"type": "string",
"description": "The name of the target project to link to.",
"$default": {
"$source": "argv",
"index": 1
},
"x-dropdown": "projects",
"x-prompt": "What name of the target project to link to?"
}
},
"required": [
"sourceProjectName",
"targetProjectName"
]
}