Package org.gradle.api.reporting.dependencies

Examples of org.gradle.api.reporting.dependencies.HtmlDependencyReportTask.conventionMapping()


        new DslObject(htmlDependencyReportTask.getReports().getHtml()).getConventionMapping().map("destination", new Callable<Object>() {
                    public Object call() throws Exception {
                        return new File(convention.getProjectReportDir(), "dependencies");
                    }
                });
        htmlDependencyReportTask.conventionMapping("projects", new Callable<Object>() {
            public Object call() throws Exception {
                return convention.getProjects();
            }
        });
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.