Examples of printRuleSet()


Examples of com.buschmais.jqassistant.core.report.api.ReportHelper.printRuleSet()

    @Override
    public void aggregate(MavenProject baseProject, Set<MavenProject> projects, Store store) throws MojoExecutionException, MojoFailureException {
        getLog().info("Available rules for '" + baseProject.getName() + "'.");
        RuleSet ruleSet = readRules(baseProject);
        ReportHelper reportHelper = new ReportHelper(new MavenConsole(getLog()));
        reportHelper.printRuleSet(ruleSet);
    }

    @Override
    protected boolean isResetStoreOnInitialization() {
        return false;
View Full Code Here

Examples of com.buschmais.jqassistant.core.report.api.ReportHelper.printRuleSet()

    @Override
    public void aggregate(MavenProject baseProject, Set<MavenProject> projects, Store store) throws MojoExecutionException, MojoFailureException {
        getLog().info("Effective rules for '" + baseProject.getName() + "'.");
        RuleSet targetRuleSet = resolveEffectiveRules(baseProject);
        ReportHelper reportHelper = new ReportHelper(new MavenConsole(getLog()));
        reportHelper.printRuleSet(targetRuleSet);
    }

    @Override
    protected boolean isResetStoreOnInitialization() {
        return false;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.