UNPKG

@atomist/sdm-pack-spring

Version:

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

16 lines (15 loc) 606 B
import { Builder } from "@atomist/sdm-pack-build"; /** * Build with Gradle in the local automation client. * This implementation requires Java and maven on the classpath. * Note it is NOT intended for use for multiple organizations. It's OK * for one organization to use inside its firewall, but there is potential * vulnerability in builds of unrelated tenants getting at each others * artifacts. */ export declare function gradleSingleModuleBuilder(): Builder; export declare const GradleSingleModuleBuilder: Builder; export interface GradleInfo { timeMillis?: number; success: boolean; }