adammurdoch 02/02/12 02:28:33
Modified: proposal/myrmidon/src/java/org/apache/myrmidon/frontends
CLIMain.java Resources.properties
Log:
* Rename --myrmidon-home command-line arg to --ant-home.
* Change some usage messages.
Revision Changes Path
1.23 +3 -3
jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java
Index: CLIMain.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- CLIMain.java 7 Feb 2002 13:01:11 -0000 1.22
+++ CLIMain.java 12 Feb 2002 10:28:33 -0000 1.23
@@ -42,7 +42,7 @@
* to run project.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.22 $ $Date: 2002/02/07 13:01:11 $
+ * @version $Revision: 1.23 $ $Date: 2002/02/12 10:28:33 $
*/
public class CLIMain
extends AbstractLogEnabled
@@ -127,7 +127,7 @@
*/
private void usage( final CLOptionDescriptor[] options )
{
- System.out.println( "java " + getClass().getName() + " [options]" );
+ System.out.println( "ant [options] [targets]" );
System.out.println( "\tAvailable options:" );
System.out.println( CLUtil.describeOptions( options ) );
}
@@ -191,7 +191,7 @@
INCREMENTAL_OPT,
REZ.getString( "incremental.opt" ) );
options[ 9 ] =
- new CLOptionDescriptor( "myrmidon-home",
+ new CLOptionDescriptor( "ant-home",
CLOptionDescriptor.ARGUMENT_REQUIRED,
HOME_DIR_OPT,
REZ.getString( "home.opt" ) );
1.3 +2 -2
jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/Resources.properties
Index: Resources.properties
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/Resources.properties,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Resources.properties 19 Nov 2001 12:37:27 -0000 1.2
+++ Resources.properties 12 Feb 2002 10:28:33 -0000 1.3
@@ -9,8 +9,8 @@
version.opt=Display version.
tasklib.opt=Specify the task lib directory to scan for .tsk files.
incremental.opt=Run in incremental mode.
-home.opt=Specify myrmidon home directory.
-define.opt=Define a variable (ie -Dfoo=var).
+home.opt=Specify Ant home directory.
+define.opt=Define a property (ie -Dfoo=var).
build.opt=Define a builder parameter (ie -Bfoo=var).
dry-run.opt=Do not execute tasks - just print them out.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>