| Version.java |
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 Broecke
13 * @version $Id: Version.java,v 1.4 2006/05/06 00:10:11 justb Exp $
14 */
15
16public 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.4 2006/05/06 00:10:11 justb
25 * various chgs but not too serious...
26 *
27 * Revision 1.3 2004/02/08 16:07:55 justb
28 * *** empty log message ***
29 *
30 * Revision 1.2 2003/08/15 08:37:40 justb
31 * fix/add Copyright+LGPL file headers and footers
32 *
33 * Revision 1.1 2003/08/11 21:29:48 justb
34 * first checkin
35 *
36 *
37 */
38| Version.java |