RE: ant UI

2004-12-22 Thread Radha Sangal
Can anthill provide a facility to report differences with history between 2 tags in cvs? If so , u saved my day. -Original Message- From: Charles Hudak [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 22, 2004 1:47 PM To: Ant Users List Subject: RE: ant UI We have over a dozen

RE: ant UI

2004-12-22 Thread Charles Hudak
the builds and generates automatically deployable artifacts to any of our development environments (dev,staging,production). -Original Message- From: Radha Sangal [mailto:[EMAIL PROTECTED] Sent: Wed 12/22/2004 10:35 AM To: Ant Users List Cc: Subject:RE: ant UI

RE: ant UI

2004-12-22 Thread Radha Sangal
- From: Charles Hudak [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 22, 2004 1:31 PM To: Ant Users List Subject: RE: ant UI Sounds like you guys are reinventing the wheel. Why not just use a continous integration tool like Anthill or CruiseControl that has a web interface for configuring and

RE: ant UI

2004-12-22 Thread Charles Hudak
generate emails and build reports. -Original Message- From: Douglas Lochart [mailto:[EMAIL PROTECTED] Sent: Wed 12/22/2004 10:25 AM To: Ant Users List Cc: Subject:Re: ant UI I have not implemented on the web yet but that is the next on the agenda. Having a web

Re: ant UI

2004-12-22 Thread Douglas Lochart
would need to pass parameters from Jsp --> ant script. Will keep your suggestion in mind, it might reduce some complexity. Thanks radha -Original Message- From: Douglas Lochart [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 22, 2004 1:04 PM To: Ant Users List Subject: Re: a

RE: ant UI

2004-12-22 Thread Radha Sangal
d to pass parameters from Jsp --> ant script. Will keep your suggestion in mind, it might reduce some complexity. Thanks radha -Original Message- From: Douglas Lochart [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 22, 2004 1:04 PM To: Ant Users List Subject: Re: ant UI Radha, I

Re: ant UI

2004-12-22 Thread Douglas Lochart
al Message- From: Jacob, Anil - MWT [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 8:49 PM To: Ant Users List Subject: RE: ant UI --- --- ant -f test.xml -Ddev.build1=Build_0402_0012 test Buildfile: test.xml test: [echo] Value of DevBuild1 is Build_0402_0012 BU

RE: ant UI

2004-12-22 Thread James Abley
cob, Anil - MWT [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 21, 2004 8:49 PM > To: Ant Users List > Subject: RE: ant UI > > --- > > > > > > > > > --- > > ant -f test.xml -Ddev.build1=Build_0402_0012 test > Buildfile: test.

RE: ant UI

2004-12-22 Thread Radha Sangal
ent: Tuesday, December 21, 2004 8:49 PM To: Ant Users List Subject: RE: ant UI --- --- ant -f test.xml -Ddev.build1=Build_0402_0012 test Buildfile: test.xml test: [echo] Value of DevBuild1 is Build_0402_0012 BUILD SUCCESSFUL Total time: 3 seconds Anil -Original Mess

RE: ant UI

2004-12-22 Thread Radha Sangal
Do u know how to pass multiple properties ? like dev.build2 ... space /comma does not work -Original Message- From: Jacob, Anil - MWT [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 8:49 PM To: Ant Users List Subject: RE: ant UI --- --- ant -f test.xml

RE: ant UI

2004-12-21 Thread Jacob, Anil - MWT
, December 21, 2004 5:25 PM To: Ant Users List Subject: RE: ant UI Where exactly are you updating the properties? Are you echoing it or writing it into a file? Anil -Original Message- From: Radha Sangal [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 2:20 PM To: Ant Users List

RE: ant UI

2004-12-21 Thread Jacob, Anil - MWT
Where exactly are you updating the properties? Are you echoing it or writing it into a file? Anil -Original Message- From: Radha Sangal [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 2:20 PM To: Ant Users List Subject: RE: ant UI -D option is not working !! I gave "c

RE: ant UI

2004-12-21 Thread Velagapudi, Murali
ublic class RunAnt extends Ant { public RunAnt() { project = new Project(); project.init(); setOutput("output.txt"); } } -Original Message- From: Radha Sangal [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 5:20 PM To: Ant Users List Subject: RE

RE: ant UI

2004-12-21 Thread Radha Sangal
age- From: Jacob, Anil - MWT [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 6:17 PM To: Ant Users List Subject: RE: ant UI Instead of hardcoding the value of the Build_0402_0012, you can actually pass it as a commandline paramters -Ddev.build=Build_0402_0012. Then the build file

RE: ant UI

2004-12-21 Thread Jacob, Anil - MWT
t target that you want to execute, can also be passed from the html page(like a submit button) Anil -Original Message- From: Radha Sangal [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 10:43 AM To: Ant Users List Subject: RE: ant UI That helped ! command line arguments , I compl

RE: ant UI

2004-12-21 Thread Radha Sangal
] Sent: Monday, December 20, 2004 6:17 PM To: Ant Users List Subject: RE: ant UI Instead of hardcoding the value of the Build_0402_0012, you can actually pass it as a commandline paramters -Ddev.build=Build_0402_0012. Then the build file would look like this When ant runs it picks up the value

RE: ant UI

2004-12-20 Thread Jacob, Anil - MWT
or cgi script to execute ant over a browser, off course you need a web server also. Works great. Anil -Original Message- From: Radha Sangal [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:48 AM To: Ant Users List Subject: RE: ant UI Look at the bottom of the second link-ed

RE: ant UI

2004-12-20 Thread Radha Sangal
, December 17, 2004 1:17 AM To: Ant Users List Subject: Re: ant UI At 04:30 PM 12/16/2004 -0500, you wrote: >Does Ant come with any user interface from where we can pass parameters >and see results on web explorer? Use an XSLT. Add something the following to your build file After that

Re: ant UI

2004-12-16 Thread Jacob Kjome
At 04:30 PM 12/16/2004 -0500, you wrote: >Does Ant come with any user interface from where we can pass parameters >and see results on web explorer? Use an XSLT. Add something the following to your build file After that, just create (or find it on the net) the stylesheet and open the build.xm

ant UI

2004-12-16 Thread Radha Sangal
Does Ant come with any user interface from where we can pass parameters and see results on web explorer?