@nxrocks/nx-spring-boot
Version:
Nx Plugin to generate, run, package, build (and more) Spring Boot projects inside your Nx workspace
26 lines (25 loc) • 960 B
JSON
{
"name": "nx-spring-boot",
"version": "0.0.1",
"generators": {
"project": {
"factory": "./src/generators/project/generator",
"schema": "./src/generators/project/schema.json",
"description": "Creates a `Spring Boot` project",
"aliases": ["proj", "new", "create"]
},
"link": {
"factory": "./src/generators/link/generator",
"schema": "./src/generators/link/schema.json",
"description": "Adds an implicit nx dependency between a source (`Spring-Boot`) project and another one (for i.e `Angular`) in the workspace.",
"aliases": ["link-project"]
},
"preset": {
"factory": "./src/generators/preset/generator",
"schema": "./src/generators/preset/schema.json",
"description": "Initializes a workspace with an nx-spring-boot inside of it. Use as: `create-nx-workspace --preset @nxrocks/nx-spring-boot`.",
"x-use-standalone-layout": true,
"hidden": true
}
}
}