@nxrocks/nx-spring-boot
Version:
Nx Plugin to generate, run, package, build (and more) Spring Boot projects inside your Nx workspace
36 lines (31 loc) • 883 B
TypeScript
export interface ProjectGeneratorOptions {
directory: string;
projectType: ProjectType;
name?: string;
tags?: string;
springInitializerUrl?: string;
proxyUrl?: string;
buildSystem?: 'maven-project' | 'gradle-project' | 'gradle-project-kotlin';
language?: 'java' | 'kotlin' | 'groovy';
bootVersion?: string;
groupId?: string;
artifactId?: string;
packageName?: string;
description?: string;
javaVersion?: string;
packaging?: 'jar' | 'war';
dependencies?: string;
version?: string;
skipFormat?: boolean;
transformIntoMultiModule?: boolean;
addToExistingParentModule?: boolean;
parentModuleName?: string;
keepProjectLevelWrapper?: boolean;
}
export interface NormalizedSchema extends ProjectGeneratorOptions {
projectName: string;
projectRoot: string;
projectDependencies: string[];
parsedTags: string[];
moduleRoot?: string;
}