Package ch.hortis.sonar.mvn.mc

Examples of ch.hortis.sonar.mvn.mc.MetricsCollector


    if (mavenProject.getParent() != null) {
      getLog().info("Parent module : " + mavenProject.getParent().getGroupId() + ":" + mavenProject.getParent().getArtifactId());
    }
    getLog().info("Collecting information for plugin " + report);

    MetricsCollector collector = report.getMetricsCollector();
    collector.enableLogging(getLog());
   
    Collection<ProjectMetricMeasure> measures = new ArrayList<ProjectMetricMeasure>();
    if (collector.initialize(mavenProject)) {
      Collection<MetricData> metricsData = collector.collectMeasures();
      measures = getMetrics( metricsData );
    }
    return measures;
  }
View Full Code Here

TOP

Related Classes of ch.hortis.sonar.mvn.mc.MetricsCollector

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.