How to compile jsp files with ANT

2007-02-20 Thread Lokesh Jayaraman
Dear, How to compile JSP files using ANT and Websphere Application Server 6.0 and also use websphere's java compiler and libraries Kindly help me to solve this pbm by Lokesh

Getting Buildfile: build.xml does not exist! and Build failed

2007-02-20 Thread vmanthi
I had my apache-ant-1.6.2 and completed setting varaibles ANT_HOME PATH but when I run basic ant command like ant -version at CMD getting messages like(copied from the CMD, no manipulation) build.xml does not exist! Build failed Clue: I logged off and logged in as a different user(with my f

Re: Getting Buildfile: build.xml does not exist! and Build failed

2007-02-20 Thread Prashant
Its is not entirely clear what problem is that you are facing. ant -version prints the version of ANT in the PATH. ant -v executes default target of build.xml in the current dir in "verbose" mode. In this case if there is no build.xml in the current directory you will see messages like build.

Re: How to compile jsp files with ANT

2007-02-20 Thread Rashmi Rubdi
Hi Lokesh, I'm assuming you want to pre-compile JSPs. You can use Jasper for that. Take a look at the Jasper ANT task here: http://tomcat.apache.org/tomcat-5.5-doc/jasper-howto.html The pre-compilation process first converts all JSP files to .java files and then compiles them into class files,

fileset and filename under copy task

2007-02-20 Thread KDuffy
Hello: I am tring to do something simple. I want to copy files from from one directory to another by listing specific groups of file ie *.XML or *.html The follwing works: Copy Other Files But

RE: fileset and filename under copy task

2007-02-20 Thread bill/wilandra
>From the examples in the 1.6.5 manual I would assume that the following should work. I did not try it. HTH Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 11:55 AM To: us

Re: fileset and filename under copy task

2007-02-20 Thread Ninju Bohra
As much as you used the element you can use an element to define which files 'to include' Something like Copy Other Files - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: user@ant.apache.org Sent: Tuesday, February 20, 2007 1:54:44 PM

Re: fileset and filename under copy task

2007-02-20 Thread Mathieu Champlon
[EMAIL PROTECTED] a écrit : This does NOT work: Copy Other Files ${bin} ${src} Hello, You can do something much

Re: fileset and filename under copy task

2007-02-20 Thread Mathieu Champlon
bill/wilandra a écrit : >From the examples in the 1.6.5 manual I would assume that the following should work. I did not try it. HTH Bill Hello, Unfortunatly this won't work as a fileset behaves like an 'and' selector container. Ther