Hi Geroge, I just did that and now it works fine. Thank you very much.
Regards, Balvinder. -----Original Message----- From: George McKinney [mailto:[EMAIL PROTECTED]] Sent: September 17, 2002 12:22 PM To: Ant Users List Subject: Re: Set up ant in Windows 98 environment I initially had a similar problem, and simply put a shortcut to the MSDos prompt on my desktop, and then rightclicked on that icon and selected "Properties". In the "Memory" tab of that dialog, I set Initial Environment to 4096. (I also set an initial directory and startup batch file, but those you can ignore for now.) After doing that, I was able to double-click on the shortcut, cd appropriately, and run Ant with no problems. You can also give the shortcut a meaningful name and icon if you want. YMMV, George McKinney [EMAIL PROTECTED] ========================================================= An experienced developer knows that it is seldom wise to prefix a demonstration with anything more predictive than "Watch this" - unless there is a good test suite in place. ----- Original Message ----- From: "Balvinder S Sahota" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 17, 2002 10:40 AM Subject: Set up ant in Windows 98 environment > > Hi, > > > > I am a first time user and trying to build a Java application. I am > > getting the following error message when try to compile and run a simple > > program: > > > > Error Messages are: > > Out of environment space > > Out of environment space > > Out of environment space > > Out of environment space > > Out of environment space > > Exception in thread "main" java.lang.NoclassDefFoundError: > > org/apache/tools/ant/Main > > > > The build File: build.xml > > Contents: > > <project default="run" basedir="."> > > > > <property name="app.name" value="MyFstApp"/> > > > > <target name="compile" description="* Compiles the source code"> > > <javac srcdir="."/> > > </target> > > > > <target name="run" depends="compile" description="* Executes the > > application"> > > <java classname="${app.name}"/> > > </target> > > > > </project> > > > > > > Program File: MyFstApp.java > > Contents: > > public class MyFstApp { > > public static void main( String[] args ) { > > // Display the string. > > System.out.println( "This is my first Java application!" ); > > } > > } > > > > > > The environment is: > > OS: Windows 98 > > Ant Version: Ant 1.5 extracted off jakarta-ant-1.5-bin > > Java Version: j2sdk1.4.0_02 extracted off j2sdk-1_4_0_02-windows-i586 > > > > Setting in autoexec.bat file are: > > SET ANT_HOME=c:\ant15 > > SET JAVA_HOME=c:\j2s14002 > > SET CLASSPATH=c:\LrngJava\lab > > SET PATH=%PATH%;%ANT_HOME%\bin;%JAVA_HOME%\bin > > > > I have no problem in compiling and running MyFstApp on command line by > > using: > > > > javac MyFstApp.java > > java MyFstApp > > > > But when I try to use ant, I get the above mentioned error. Your help to > > get me going will be highly appreciated. > > > > Best regards, > > Bal. > > > ---------------------------------------------------------------------------- ---- > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
