@nxrocks/nx-quarkus
Version:
Nx Plugin to generate, run, package, build (and more) Quarkus projects inside your Nx workspace
70 lines (69 loc) • 2.75 kB
JSON
{
"executors": {
"dev": {
"implementation": "./src/executors/dev/executor",
"schema": "./src/executors/dev/schema.json",
"description": "Executor to run the project"
},
"serve": {
"implementation": "./src/executors/dev/executor",
"schema": "./src/executors/dev/schema.json",
"description": "Executor to serve the project (alias to 'dev' executor)"
},
"remote-dev": {
"implementation": "./src/executors/remote-dev/executor",
"schema": "./src/executors/remote-dev/schema.json",
"description": "Executor to run the project from remote location"
},
"test": {
"implementation": "./src/executors/test/executor",
"schema": "./src/executors/test/schema.json",
"description": "Executor to test the project"
},
"clean": {
"implementation": "./src/executors/clean/executor",
"schema": "./src/executors/clean/schema.json",
"description": "Executor to clean the project"
},
"format": {
"implementation": "./src/executors/format/executor",
"schema": "./src/executors/format/schema.json",
"description": "Executor to format the project"
},
"apply-format": {
"implementation": "./src/executors/format/executor",
"schema": "./src/executors/format/schema.json",
"description": "Executor to format the project (alias to 'format' executor)"
},
"check-format": {
"implementation": "./src/executors/check-format/executor",
"schema": "./src/executors/check-format/schema.json",
"description": "Executor to check if project's files are well formatted using Spotless plugin"
},
"build": {
"implementation": "./src/executors/build/executor",
"schema": "./src/executors/build/schema.json",
"description": "Executor to build the project"
},
"install": {
"implementation": "./src/executors/install/executor",
"schema": "./src/executors/install/schema.json",
"description": "Executor to install the project's artifacts (i.e jar or war) to the local Maven repository"
},
"package": {
"implementation": "./src/executors/package/executor",
"schema": "./src/executors/package/schema.json",
"description": "Executor to package the project"
},
"add-extension": {
"implementation": "./src/executors/add-extension/executor",
"schema": "./src/executors/add-extension/schema.json",
"description": "Executor to add an extension to the project"
},
"list-extensions": {
"implementation": "./src/executors/list-extensions/executor",
"schema": "./src/executors/list-extensions/schema.json",
"description": "Executor to list extensions in the project"
}
}
}