Beispiel #1
0
 /** Calls a build step. */
 protected final boolean perform(BuildStep bs, BuildListener listener)
     throws InterruptedException, IOException {
   BuildStepMonitor mon;
   try {
     mon = bs.getRequiredMonitorService();
   } catch (AbstractMethodError e) {
     mon = BuildStepMonitor.BUILD;
   }
   return mon.perform(bs, AbstractBuild.this, launcher, listener);
 }