UNPKG

@nxrocks/nx-spring-boot

Version:

Nx Plugin to generate, run, package, build (and more) Spring Boot projects inside your Nx workspace

60 lines (59 loc) 2.4 kB
{ "executors": { "run": { "implementation": "./src/executors/run/executor", "schema": "./src/executors/run/schema.json", "description": "Executor to run the project" }, "serve": { "implementation": "./src/executors/run/executor", "schema": "./src/executors/serve/schema.json", "description": "Executor to serve the project (alias to 'run' executor)" }, "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" }, "build": { "implementation": "./src/executors/build/executor", "schema": "./src/executors/build/schema.json", "description": "Executor to build the project's Jar or War" }, "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" }, "format": { "implementation": "./src/executors/format/executor", "schema": "./src/executors/format/schema.json", "description": "Executor to format the project's files using Spotless plugin" }, "apply-format": { "implementation": "./src/executors/format/executor", "schema": "./src/executors/format/schema.json", "description": "Executor to format the project's files using Spotless plugin (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-image": { "implementation": "./src/executors/build-image/executor", "schema": "./src/executors/build-image/schema.json", "description": "Executor to build the project's OCI image" }, "build-info": { "implementation": "./src/executors/build-info/executor", "schema": "./src/executors/build-info/schema.json", "description": "Executor to build the project's build information" } } }