BuildInfo.java

package com.icegreen.greenmail.server;

/**
 * Defines project build info such as version.
 * <p>
 * Note: Actual values will be replaced by build compilation
 */
public enum BuildInfo {
    INSTANCE;

    /**
     * @return the project version
     */
    public String getProjectVersion() {
        return "<replaced>"; // NOSONAR
    }
}