Package org.eluder.coveralls.maven.plugin.parser

Examples of org.eluder.coveralls.maven.plugin.parser.JaCoCoParser


            coberturaFiles.add(new File(reportingDirectory, COBERTURA_FILE));
            sagaFiles.add(new File(buildDirectory, SAGA_FILE));
        }
       
        for (File jacocoFile : jacocoFiles) {
            parsers.add(new JaCoCoParser(jacocoFile, sourceLoader));
        }
        for (File coberturaFile : coberturaFiles) {
            parsers.add(new CoberturaParser(coberturaFile, sourceLoader));
        }
        for (File sagaFile : sagaFiles) {
View Full Code Here

TOP

Related Classes of org.eluder.coveralls.maven.plugin.parser.JaCoCoParser

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.