@atomist/sdm-pack-spring
Version:
Atomist software delivery machine extension pack for Spring and Spring Boot applications
16 lines (15 loc) • 577 B
TypeScript
import { CodeTransform } from "@atomist/sdm";
/**
* Set the Spring Boot version to the desired version.
* Will act on all pom files found in the project, not just in the root,
* so works on monorepos.
*/
export declare function setSpringBootVersionTransform(desiredBootVersion: string): CodeTransform;
/**
* Set the Spring Boot version according to the parameters.
* Will act on all pom files found in the project, not just in the root,
* so works on monorepos.
*/
export declare const SetSpringBootVersionTransform: CodeTransform<{
desiredBootVersion: string;
}>;