Package org.sonar.batch.scan2

Examples of org.sonar.batch.scan2.ModuleScanContainer


  @Override
  public void execute() {
    boolean sensorMode = CoreProperties.ANALYSIS_MODE_SENSOR.equals(taskContainer.getComponentByType(BootstrapProperties.class).property(CoreProperties.ANALYSIS_MODE));
    if (sensorMode) {
      new ProjectScanContainer(taskContainer).execute();
    } else {
      scan(new org.sonar.batch.scan.ProjectScanContainer(taskContainer));
    }
  }
View Full Code Here

TOP

Related Classes of org.sonar.batch.scan2.ModuleScanContainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.