/* MonkeyTalk - a cross-platform functional testing tool Copyright (C) 2012 Gorilla Logic, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.gorillalogic.monkeytalk; public class BuildStamp { /* DO NOT EDIT THIS */ // codegen-stamp public static final String VERSION = "1.0.63-SNAPSHOT"; public static final String BUILD_NUMBER = "dev"; public static final String TIMESTAMP = "2013-10-22 18:19:24 EDT"; public static final String VERSION_INFO = "1.0.63-SNAPSHOT_dev - 2013-10-22 18:19:24 EDT"; public static final String STAMP = "MonkeyTalk v1.0.63-SNAPSHOT_dev - 2013-10-22 18:19:24 EDT - Copyright 2012-2013 Gorilla Logic, Inc. - www.gorillalogic.com"; // codegen-end public static void main(String[] args) { System.out.println(STAMP); } }