Package org.apache.easyant.core.report

Examples of org.apache.easyant.core.report.XMLEasyAntReportWriter


            EasyAntReport easyantReport = pluginService.getPluginInfo(moduleIvy, sourceDirectory, conf);
            ModuleRevisionId moduleRevisionId = easyantReport.getModuleDescriptor().getModuleRevisionId();
            File reportFile = new File(todir, getOutputPattern(moduleRevisionId, conf, "xml"));
            todir.mkdirs();
            OutputStream stream = new FileOutputStream(reportFile);
            XMLEasyAntReportWriter writer = new XMLEasyAntReportWriter();
            writer.output(easyantReport, stream);
            stream.close();
            genStyled(reportFile, getReportStylePath(), easyantReport);
        } catch (Exception e) {
            throw new BuildException("impossible to generate report: " + e, e);
        }
View Full Code Here

TOP

Related Classes of org.apache.easyant.core.report.XMLEasyAntReportWriter

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.