1 /*
2 *
3 * Copyright 2003, 2004 by Libereco, the Netherlands. All Rights Reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are not permitted.
7 *
8 * Neither the name of Libereco or the names of contributors may be
9 * used to endorse or promote products derived from this software
10 * without specific prior written permission.
11 *
12 * This software is provided "AS IS," without a warranty of any kind.
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
14 * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
15 * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.
16 * LIBERECO AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR
17 * LIABILITIES SUFFERED BY LICENSEE AS A RESULT OF OR RELATING TO USE,
18 * MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES.
19 * IN NO EVENT WILL LIBERECO OR ITS LICENSORS BE LIABLE FOR ANY LOST
20 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
21 * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
22 * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
23 * OR INABILITY TO USE SOFTWARE, EVEN IF LIBERECO HAS BEEN ADVISED
24 * OF THE POSSIBILITY OF SUCH DAMAGES.
25 */
26 package net.sourceforge.wheeler.server;
27
28 /***
29 * The Wheeler server.
30 * <p/>
31 * <p/>
32 * <p><b>Usage:</b><br/>
33 * <pre xml:space="preserve"><code>
34 * N/A
35 * </code></pre>
36 * <p/>
37 *
38 * @author <a href="mailto:marcel.schepers@libereco.biz">Marcel Schepers (mgl)</a>
39 * @version $Id: Main.java,v 1.4 2004/11/21 20:58:31 mgl Exp $
40 * @since Oct 29, 2004
41 */
42 public class Main {
43 private static String SITEINFO = "http://wheeler.sourceforge.net";
44 private static String VERSIONINFO =
45 "Wheeler Server (version: " + VersionConstants.VERSIONNUM
46 + ", build: "+ VersionConstants.BUILDNUM + "), " + SITEINFO;
47
48 /***
49 */
50 public Main() {
51 }
52
53 public static void main(String args[]){
54 System.out.println(VERSIONINFO);
55 }
56
57 }