net.jokubasdargis.buildtimer.BuildTimerPluginExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
A Gradle plugin which reports timings of a project build and individual project tasks
The newest version!
package net.jokubasdargis.buildtimer
class BuildTimerPluginExtension {
static enum SortOrder {
NONE, ASC, DESC
}
final static String NAME = "buildTimer"
final static long DEFAULT_REPORT_ABOVE = 50L
final static SortOrder DEFAULT_SORT_ORDER = SortOrder.NONE
long reportAbove = DEFAULT_REPORT_ABOVE
SortOrder sort = DEFAULT_SORT_ORDER
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy