1 // Copyright (c) 2000 Just Objects B.V. <just@justobjects.nl>2 // Distributable under LGPL license. See terms of license at gnu.org.3 4 package nl.justobjects.pushlet;5 6 /**7 * Version info class.8 *9 * <h3>Purpose</h3>10 * Extract version info from jar manifest file.11 *12 * @author Just van den Broecke13 * @version $Id: Version.java,v 1.3 2004/02/08 16:07:55 justb Exp $14 */15 16 public class Version {17 /** Version info extracted from the .jar manifest file (see build.xml and build.properties). */18 public static final String SOFTWARE_VERSION = Version.class.getPackage().getSpecificationVersion();19 public static final String BUILD_DATE = Version.class.getPackage().getImplementationVersion();20 }21 22 /*23 * $Log: Version.java,v $24 * Revision 1.3 2004/02/08 16:07:55 justb25 * *** empty log message ***26 *27 * Revision 1.2 2003/08/15 08:37:40 justb28 * fix/add Copyright+LGPL file headers and footers29 *30 * Revision 1.1 2003/08/11 21:29:48 justb31 * first checkin32 *33 *34 */35