@atomist/sdm-pack-spring
Version:
Atomist software delivery machine extension pack for Spring and Spring Boot applications
14 lines (13 loc) • 596 B
TypeScript
import { Deployer } from "@atomist/sdm";
import { LocalDeployerOptions, ManagedDeployments, ManagedDeploymentTargetInfo } from "@atomist/sdm-core";
/**
* Managed deployments
*/
export declare let managedExecutableJarDeployments: ManagedDeployments;
/**
* Start up an executable Jar on the same node as the automation client.
* Not intended as a Paas, but for use during demos and development.
* Always uses the same URL, whatever the branch and sha.
* @param opts options
*/
export declare function executableJarDeployer(opts: LocalDeployerOptions): Deployer<ManagedDeploymentTargetInfo>;