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

com.github.danielflower.mavenplugins.release.Clock Maven / Gradle / Ivy

package com.github.danielflower.mavenplugins.release;

import java.util.Date;

public interface Clock {

    Date now();


    public static Clock SystemClock = new Clock() {
        @Override
        public Date now() {
            return new Date();
        }
    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy