org.gradle.api.reporting.internal.TaskGeneratedSingleDirectoryReport Java Examples

The following examples show how to use org.gradle.api.reporting.internal.TaskGeneratedSingleDirectoryReport. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JacocoReportsContainerImpl.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public JacocoReportsContainerImpl(Task task) {
    super(ConfigurableReport.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
    add(TaskGeneratedSingleFileReport.class, "xml", task);
    add(TaskGeneratedSingleFileReport.class, "csv", task);
}
 
Example #2
Source File: DefaultDependencyReportContainer.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultDependencyReportContainer(Task task) {
    super(Report.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #3
Source File: DefaultTestTaskReports.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultTestTaskReports(Task task) {
    super(ConfigurableReport.class, task);

    add(DefaultJUnitXmlReport.class, "junitXml", task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #4
Source File: JacocoReportsContainerImpl.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public JacocoReportsContainerImpl(Task task) {
    super(ConfigurableReport.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
    add(TaskGeneratedSingleFileReport.class, "xml", task);
    add(TaskGeneratedSingleFileReport.class, "csv", task);
}
 
Example #5
Source File: DefaultDependencyReportContainer.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultDependencyReportContainer(Task task) {
    super(Report.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #6
Source File: DefaultTestTaskReports.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultTestTaskReports(Task task) {
    super(ConfigurableReport.class, task);

    add(DefaultJUnitXmlReport.class, "junitXml", task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #7
Source File: JacocoReportsContainerImpl.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public JacocoReportsContainerImpl(Task task) {
    super(ConfigurableReport.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
    add(TaskGeneratedSingleFileReport.class, "xml", task);
    add(TaskGeneratedSingleFileReport.class, "csv", task);
}
 
Example #8
Source File: DefaultDependencyReportContainer.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultDependencyReportContainer(Task task) {
    super(Report.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #9
Source File: DefaultTestTaskReports.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultTestTaskReports(Task task) {
    super(ConfigurableReport.class, task);

    add(DefaultJUnitXmlReport.class, "junitXml", task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #10
Source File: JacocoReportsContainerImpl.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public JacocoReportsContainerImpl(Task task) {
    super(ConfigurableReport.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
    add(TaskGeneratedSingleFileReport.class, "xml", task);
    add(TaskGeneratedSingleFileReport.class, "csv", task);
}
 
Example #11
Source File: DefaultDependencyReportContainer.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultDependencyReportContainer(Task task) {
    super(Report.class, task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}
 
Example #12
Source File: DefaultTestTaskReports.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public DefaultTestTaskReports(Task task) {
    super(ConfigurableReport.class, task);

    add(DefaultJUnitXmlReport.class, "junitXml", task);
    add(TaskGeneratedSingleDirectoryReport.class, "html", task, "index.html");
}