Re: hotswap via ant

2004-04-04 Thread David Kavanagh
never mind about the , solved my own problem! Thus Spoke David Kavanagh: Matt, Have you used the target from ant-contrib? I'm not having any luck. I have 0.6 (and even tried building it myself from the sources). I have run the task, so I know the library is being picked up. I get this error wh

Re: hotswap via ant

2004-04-04 Thread David Kavanagh
Matt, Have you used the target from ant-contrib? I'm not having any luck. I have 0.6 (and even tried building it myself from the sources). I have run the task, so I know the library is being picked up. I get this error when it hits my target. BUILD FAILED C:\view\dkavanag\1411_view\payx\inc\i

Re: hotswap via ant

2004-04-03 Thread David Kavanagh
--- From: "David Kavanagh" <[EMAIL PROTECTED]> To: "Matt Benson" <[EMAIL PROTECTED]> Cc: "Ant Developers List" <[EMAIL PROTECTED]> Sent: Saturday, April 03, 2004 2:14 AM Subject: Re: hotswap via ant It's Alive! Now, I just need some help

Re: hotswap via ant

2004-04-03 Thread Peter Leschev
example) that the VM currently doesn't support. - Original Message - From: "David Kavanagh" <[EMAIL PROTECTED]> To: "Matt Benson" <[EMAIL PROTECTED]> Cc: "Ant Developers List" <[EMAIL PROTECTED]> Sent: Saturday, April 03, 2004 2:14 AM Subject: R

Re: hotswap via ant

2004-04-02 Thread Matt Benson
You should be able to use the date pattern "MM/dd/ hh:mm a" to add the AM/PM to your date. That's wild that the date selector doesn't use seconds. Two possibilities come to mind: -sleep for a minute after generating the timestamp. :( -use ant-contrib's task to set a comma-delimited list of

Re: hotswap via ant

2004-04-02 Thread David Kavanagh
It's Alive! Now, I just need some help working out the file selection part. (which is using existing Ant constructs). Here is a sample of my build file. This is an example of the timestamp that is returned. Is there a way t

Re: hotswap via ant

2004-04-01 Thread Matt Benson
http://ant.apache.org/manual/CoreTypes/selectors.html#dateselect You would have to use a nested element in your to create the date in the right format for the date selector, but aside from that I can't see any problems... -Matt --- [EMAIL PROTECTED] wrote: > This sounds good to me! The less gr

Re: hotswap via ant

2004-04-01 Thread dak
This sounds good to me! The less grunt work I have to do in my task, the better! I grabbed teh 1.6.1 source release and built it. If you could point me to the file selector you mention, it would help me a lot. I just poked around and it didn't jump out at me. I would like it if my task could just

Re: hotswap via ant

2004-04-01 Thread Matt Benson
Basically you should make any task as atomic as possible. So all your task would need to know about is a . Then it becomes the user's problem how to select which files to include. One way might be to use a to set a baseline time, then compile, then use a file selector to get the updated classe

Re: hotswap via ant

2004-04-01 Thread dak
When I was toying with a separate task, I wondered if could be use somehow to create a . I don't see now, but that would sure be a nice feature. Then, if I could assign an ID so I could make a of files that aren't uptodate, run the compile, then take that same as input to the target. The idea o

Re: hotswap via ant

2004-04-01 Thread Steve Loughran
[EMAIL PROTECTED] wrote: I'd like to not only build (using Ant) when I'm using VIM, but hotdeploy the class changes to a running app. I use ant.vim and it works very nicely. Then, I wrote a hotswap client using JDI. Now, I can run that via the commandline, but I'd rather integrate it into Ant. I to

hotswap via ant

2004-04-01 Thread dak
I'd like to not only build (using Ant) when I'm using VIM, but hotdeploy the class changes to a running app. I use ant.vim and it works very nicely. Then, I wrote a hotswap client using JDI. Now, I can run that via the commandline, but I'd rather integrate it into Ant. I toyed with doing a separate