put build.xml and linux.properties in a single directory.....  and check it... is this what you were looking for...?
 
Thanks
Raghavendra S

 
On 2/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:
I wonder if you know the build-in (in Tomcat) deploy task?
http://tomcat.apache.org/tomcat-5.0-doc/catalina/docs/api/org/apache/catalina/ant/package-summary.html


Jan

>-----Ursprüngliche Nachricht-----
>Von: bill/wilandra [mailto: [EMAIL PROTECTED]]
>Gesendet: Montag, 13. Februar 2006 07:33
>An: 'Ant Users List'
>Betreff: RE: About running a ANT script on UNIX.
>
>In Ant the properties file is a Java PropertiesResourceBundle
>class. The concept of a properties file is pretty simple. The
>properties file contains a set of lines that have the general
>format of key=value. The key, =, and value must all reside on
>the same line in the file. The keys must all be unique within
>the context of the file. The file name must have an extension
>of properties and must be accessible at run time.
>
>Now, do you have a specific problem related to Ant? Further,
>what have you tried and what does not work?
>
>It has been stated many times on this list that you need to be
>specific with your questions. Many of us are consultants who
>get paid to do this kind of work and are not going to write
>your Ant file for you for free. It is very very imp for me to
>get paid for my work.
>
>Bill
>
>-----Original Message-----
>From: Shweta Bodade [mailto:[EMAIL PROTECTED]]
>Sent: Sunday, February 12, 2006 10:04 PM
>To: 'Ant Users List'
>Subject: About running a ANT script on UNIX.
>
>I have created a file which deploys a simple web application in tomcat
>
>
>
>In Windows I want it should be able to deploy application in Unix also
>
>
>
>For that I need to wrtite a properties file
>
>Can anyone send me some kind of sample which will help me
>understand the concept
>
>Its very very imp for me..
>
>
>
>Thanks and regards in advance
>
>
>
>
>
>
>
>
>
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED] For
>additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


<?xml version="1.0" ?>
<project name="MyProject" default="test" basedir=".">

<property file="./linux.properties"/>
	<target name="test">
		<echo message="${myname}"/>
	</target>
</project>
myname=Raghavendra S
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to