com.github.ksoichiro.console.reporter.ConsoleReporterPlugin.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-console-reporter Show documentation
Show all versions of gradle-console-reporter Show documentation
Gradle plugin to report various kinds of summaries to console.
package com.github.ksoichiro.console.reporter
import org.gradle.api.Plugin
import org.gradle.api.Project
class ConsoleReporterPlugin implements Plugin {
@Override
void apply(Project target) {
target.rootProject.with {
extensions.create(ConsoleReporterExtension.NAME, ConsoleReporterExtension)
new ReportTestAction().hook(target)
tasks.create(ReportCoverageTask.NAME, ReportCoverageTask)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy