/******************************************************************************* * Copyright (C) 2014 Travis Ralston (turt2live) * * This software is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package com.turt2live.antishare.sponge; /** * Represents version information for AntiShare * * @author turt2live */ public final class VersionInfo { /***** * Update template if you change this file! * Changes to this file are not saved. Update the template instead. *****/ /** * The current version of the AntiShare plugin */ public static final String VERSION = "maven-version-number"; // Replaced by Maven /** * The Jenkins build number that created this plugin. May not be numeric. */ public static final String JENKINS_BUILD_NUMBER = "jenkins-build-number"; // Replaced by Maven }