UNPKG

@atomist/sdm-pack-spring

Version:

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

18 lines (17 loc) 590 B
import { CodeTransformRegistration } from "@atomist/sdm"; /** * Spring Boot version we want */ export declare const DesiredSpringBootVersion = "2.0.5.RELEASE"; export interface UpgradeSpringBootParameters { /** * Version to upgrade to */ desiredBootVersion: string; } /** * Wrap Spring Boot set version editor in a dryRunEditor, causing an event * handler to respond to the build with either a PR and Issue * @type {HandleCommand<EditOneOrAllParameters>} */ export declare const TryToUpgradeSpringBootVersion: CodeTransformRegistration<UpgradeSpringBootParameters>;