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

com.atlassian.clover.CloverLicenseInfo Maven / Gradle / Ivy

Go to download

Clover is an award winning code coverage and testing tool for Java and Groovy. It integrates easily with Maven, Ant, Grails, Eclipse and IntelliJ IDEA as well as with continuous integration servers such as Bamboo, Jenkins or Hudson. Note: before Clover 4.0 this artifact was named com.cenqua.clover:clover.

The newest version!
package com.atlassian.clover;

public class CloverLicenseInfo {

    /**
     * Expired indicates whether or not this license has expired. An expired
     * license will still activate Clover.
     */
    public static boolean EXPIRED = false;

    /**
     * Terminated indicates whether or not this license has terminated. A
     * terminated license will disable Clover.
     */
    public static boolean TERMINATED = false;

    /**
     * Expires is true if this license has an expiry time, false otherwise.
     */
    public static boolean EXPIRES = false;

    public static String NAME;
    public static String OWNER_STMT;
    public static String PRE_EXPIRY_STMT;
    public static String POST_EXPIRY_STMT;
    public static String CONTACT_INFO_STMT;
    public static String TERMINATION_STMT;
    public static long DAYS_REMAINING;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy