1/* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
2 *
3 * This program and the accompanying materials are made available under
4 * the terms of the Common Public License v1.0 which accompanies this distribution,
5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
6 *
7 * $Id: ANTMain.java,v 1.1.1.1 2004/05/09 16:57:26 vlad_r Exp $
8 */
9package com.vladium.emma;
10
11import com.vladium.emma.IAppConstants;
12
13// ----------------------------------------------------------------------------
14/**
15 * @author Vlad Roubtsov, (C) 2004
16 */
17public
18final class ANTMain
19{
20    // public: ................................................................
21
22
23    public static void main (final String [] args)
24    {
25        System.out.println ("this jar contains ANT task definitions for " + IAppConstants.APP_NAME
26            + " and is not meant to be executable");
27
28        System.out.println ();
29        System.out.println (IAppConstants.APP_USAGE_BUILD_ID);
30    }
31
32    // protected: .............................................................
33
34    // package: ...............................................................
35
36    // private: ...............................................................
37
38} // end of class
39// ----------------------------------------------------------------------------