bug in ant 1.8.2: read on System.in hangs for forked java task

2011-03-22 Thread Ron Goldman
I just started using Ant 1.8.2 as it was installed along with the latest Java Update for the Mac (JavaForMacOSX10.6Update4). Projects that worked fine with Ant 1.8.1 no longer work in 1.8.2. The problem seems to be that a Java task that forks a jvm hangs when it tries to read from System.in. Has

Re: load properties based on deployment environment

2011-03-22 Thread neubyr
Thanks for sharing the link. I am loading properties using ${deployenv}.deploy.properties file now. One of the issue I am having right now is with replaceregexp task. Is there any way to expand property in replace attribute of replaceregexp task? {{{ }}} Any other task that I can use? I have l

Re: load properties based on deployment environment

2011-03-22 Thread Dominique Devienne
On Tue, Mar 22, 2011 at 10:29 AM, neubyr wrote: > I want to set some deployment specific string replacements in a > project. For example, the project contains values like > {{{ >        connectionurl = "http://localhost"; >        connectionport = "12345" > }}} > > These values need to be changed

Re: Just the artifacts...

2011-03-22 Thread Richard_Senior
Maarten Coene wrote: > > Are you sure you are looking in your lib dir and not in your ivy-cache > dir? > Maarten > They are the same dir... is this a problem? -- View this message in context: http://old.nabble.com/Just-the-artifacts...-tp31211016p31211503.html Sent from the ivy-user mailin

load properties based on deployment environment

2011-03-22 Thread neubyr
Hi, I want to set some deployment specific string replacements in a project. For example, the project contains values like {{{ connectionurl = "http://localhost"; connectionport = "12345" }}} These values need to be changed based on deployment environment ($deployenv) - dev, qa, o