All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.jokubasdargis.buildtimer.BuildTimerPluginExtension.groovy Maven / Gradle / Ivy

Go to download

A Gradle plugin which reports timings of a project build and individual project tasks

There is a newer version: 0.3.0
Show 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