@atomist/sample-sdm
Version:
Sample Atomist automation for software delivery
10 lines (9 loc) • 379 B
TypeScript
import { PredicatePushTest } from "@atomist/sdm";
/**
* Does this project have a Spring Boot application class?
* This is a robust but expensive test as it needs
* to scan all Java sources
*/
export declare const HasSpringBootApplicationClass: PredicatePushTest;
export declare const HasSpringBootPom: PredicatePushTest;
export declare const HasSpringPom: PredicatePushTest;