uimafit-maven-plugin/src/main/java/org/apache/uima/fit/maven/GenerateDescriptorsMojo.java [259:271]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private boolean isSkipped() {
    if (skipDuringIncrementalBuilds && buildContext.isIncremental()) {
      getLog().info("Generation of UIMA component descriptors skipped in incremental build.");
      return true;
    }

    if (skip) {
      getLog().info("Generation of UIMA component descriptors skipped.");
      return true;
    }

    return false;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimafit-maven-plugin/src/main/java/org/apache/uima/fit/maven/EnhanceMojo.java [337:349]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private boolean isSkipped() {
    if (skipDuringIncrementalBuilds && buildContext.isIncremental()) {
      getLog().info("Enhancement of UIMA component classes skipped in incremental build.");
      return true;
    }

    if (skip) {
      getLog().info("Enhancement of UIMA component classes skipped.");
      return true;
    }

    return false;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



