@atomist/sdm-pack-spring
Version:
Atomist software delivery machine extension pack for Spring and Spring Boot applications
13 lines (12 loc) • 487 B
TypeScript
import { CodeInspection } from "@atomist/sdm";
/**
* Find Spring Boot version or versions in this repo.
* If it's not a Spring Boot project, there will be zero.
* If it has a pom in the root directory, there will be one.
* If it's a monorepo, there may be > 1. In this case,
* only distinct versions will be reported.
* @param {Project} p
* @return {Promise<SpringBootVersion[]>}
* @constructor
*/
export declare const SpringSecurityVersionInspection: CodeInspection<string[]>;