Java Code Examples for hudson.tasks.BuildStepMonitor#BUILD

The following examples show how to use hudson.tasks.BuildStepMonitor#BUILD . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: QyWechatNotification.java    From qy-wechat-notification-plugin with Apache License 2.0 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 2
Source File: BaseNotifier.java    From build-notifications-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
  return BuildStepMonitor.BUILD;
}
 
Example 3
Source File: PushoverNotifier.java    From build-notifications-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
  return BuildStepMonitor.BUILD;
}
 
Example 4
Source File: LambdaUploadBuildStep.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 5
Source File: LambdaUploadPublisher.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 6
Source File: LambdaPublishPublisher.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 7
Source File: LambdaPublisher.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 8
Source File: LambdaInvokePublisher.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 9
Source File: LambdaEventSourcePublisher.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 10
Source File: DockerPublisherControl.java    From docker-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}
 
Example 11
Source File: AWSDeviceFarmRecorder.java    From aws-device-farm-jenkins-plugin with Apache License 2.0 2 votes vote down vote up
/**
 * In a concurrent environment, this MUST run after the has completed.
 *
 * @return The BuildStepMonitor.
 */
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.BUILD;
}