Package org.intellij.sonar.sonarreport.data

Examples of org.intellij.sonar.sonarreport.data.SonarReport


      sonarReportContent = Files.toString(new File(pathToSonarReport), Charsets.UTF_8);
    } catch (IOException e) {
      sonarConsole.info(Throwables.getStackTraceAsString(e));
      return;
    }
    final SonarReport sonarReport = SonarReport.fromJson(sonarReportContent);
    final int issuesCount = sonarReport != null && sonarReport.getIssues() != null ? sonarReport.getIssues().size() : 0;
    sonarConsole.info(String.format("Found %d issues in the SonarQube report", issuesCount));

    if (enrichedSettings.settings.getResources().isEmpty()) {
      createIndexFrom(sonarReport, new Resource());
    } else {
View Full Code Here

TOP

Related Classes of org.intellij.sonar.sonarreport.data.SonarReport

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.