javaposse.jobdsl.dsl.helpers.publisher.WarningsContext.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of job-dsl-core Show documentation
Show all versions of job-dsl-core Show documentation
Javaposse jenkins job-dsl-core
package javaposse.jobdsl.dsl.helpers.publisher
class WarningsContext extends StaticAnalysisContext {
String includePattern = ''
String excludePattern = ''
def resolveRelativePaths(boolean resolveRelativePaths = true) {
this.doNotResolveRelativePaths = ! resolveRelativePaths
}
def includePattern(String includePattern) {
this.includePattern = includePattern
}
def excludePattern(String excludePattern) {
this.excludePattern = excludePattern
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy