UNPKG

@nxrocks/nx-spring-boot

Version:

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

16 lines (15 loc) 760 B
import { NormalizedSchema, ProjectGeneratorOptions } from '../generators/project/schema'; import { BuilderCommandAliasType, MavenDependency } from '@nxrocks/common-jvm'; export declare const DEFAULT_SPRING_INITIALIZR_URL = "https://start.spring.io"; export declare function runBootPluginCommand(commandAlias: BuilderCommandAliasType, params: string[], options?: { cwd: string; ignoreWrapper?: boolean; runFromParentModule?: boolean; }): { success: boolean; }; export declare function buildBootDownloadUrl(options: NormalizedSchema): string; export declare function isBootProject(project: { root: string; }): boolean; export declare function fetchBootDependencies(options: ProjectGeneratorOptions): Promise<Record<string, MavenDependency>>;