UNPKG

@atomist/sdm-pack-spring

Version:

Atomist software delivery machine extension pack for Spring and Spring Boot applications

17 lines (16 loc) 688 B
import { CodeTransform, CodeTransformRegistration } from "@atomist/sdm"; /** * Return a code transform that will add the given Spring Boot starter to a project. * Do nothing if it's already there, or the project isn't a Spring Boot project. * @param {string} artifact starter name * @param {string} group group the starter is from. Defaults to org.springframework.boot * @return {CodeTransform} */ export declare function addSpringBootStarterTransform(artifact: string, group?: string): CodeTransform; /** * Command to add a Spring Boot starter to the project */ export declare const AddSpringBootStarter: CodeTransformRegistration<{ artifact: string; group?: string; }>;