AW: uptodate

2006-12-04 Thread Jan.Materne
Try the selector instead of a mapper. Jan >-Ursprüngliche Nachricht- >Von: Bailey, David [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 5. Dezember 2006 01:05 >An: Ant Users List >Betreff: uptodate > >This seems like a problem which must have a very simple >solution, but I can't find

AW: please update the next release of Ant 1.7 to Xerces 2.9.0

2006-12-04 Thread Jan.Materne
>> Next question for them: are the classes compiled for use on 1.2? >> > >Well, I can't say for sure off the top of my head, but I can >say one thing: it isn't any different than for Xerces-2.8.1, >which Ant-1.7 currently depends on. Maybe from the sources content. A beta of AntUnit was compile

AW: list all targets in the build file

2006-12-04 Thread Jan.Materne
With "ant -h" you'll get a list of all Ant's options ... Jan >-Ursprüngliche Nachricht- >Von: Wayne Cannon [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 4. Dezember 2006 23:16 >An: Ant Users List >Betreff: Re: list all targets in the build file > >ant -p > >Narahari 'n' Savitha wrote: >>

RE: regarding ant build file using wlserver

2006-12-04 Thread Suchitha Koneru \(sukoneru\)
Can you start and stop the server , manually i.e. not from the ant target ? -Original Message- From: Arunasree manchala [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 2:28 AM To: user@ant.apache.org Subject: regarding ant build file using wlserver hi , This ia arunasree. Iam

Re: list all targets in the build file

2006-12-04 Thread Wayne Cannon
ant -p Narahari 'n' Savitha wrote: Freinds Would you know how to list all the targets in the build file ? -Narahari - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

regarding ant build file using wlserver

2006-12-04 Thread Arunasree manchala
hi , This ia arunasree. Iam running the ant script to start the weblogic server. Iam using wlserver. I am getting the error,what like this. Server is started but immmediately is shutting down. *ERROR:* BUILD SUCCESSFUL Total time: 14 seconds [wlserver] [wlserver] [wlserver] > [w

uptodate

2006-12-04 Thread Bailey, David
This seems like a problem which must have a very simple solution, but I can't find it. A single XML file is used to generate a large number of HTML files. And I actually have nearly 100 such XML files. These XML files rarely change, so I'd like to save time by using to only regenerate the HT

Re: please update the next release of Ant 1.7 to Xerces 2.9.0

2006-12-04 Thread Jacob Kjome
Quoting Steve Loughran <[EMAIL PROTECTED]>: > Jacob Kjome wrote: > > > Just wanted to note that I posted a message to the Xerces list. Here's a > > pointer to that email thread... > > > > http://marc.theaimsgroup.com/?l=xerces-j-dev&m=116499889520564&w=2 > > > > Jake > > > > > > Next question for

Re: list all targets in the build file

2006-12-04 Thread Jack J. Woehr
http://ant.apache.org/manual/running.html#options -projecthelp, -p print project help information On Dec 4, 2006, at 3:10 PM, Narahari 'n' Savitha wrote: Freinds Would you know how to list all the targets in the build file ? -Narahari -- Jack J. Woehr Director of Development Absolute

Re: list all targets in the build file

2006-12-04 Thread Scot P. Floess
Try: ant -projecthelp That will dump out all the targets... Narahari 'n' Savitha wrote: Freinds Would you know how to list all the targets in the build file ? -Narahari -- Scot P. Floess 27 Lake Royale Louisburg, NC 27549 252-478-8087 (Home) 919-754-4592 (Work) Chief Architect JPlate

list all targets in the build file

2006-12-04 Thread Narahari 'n' Savitha
Freinds Would you know how to list all the targets in the build file ? -Narahari

Re: Re: Some problems extending ExecTask

2006-12-04 Thread Pascal Quesseveur
Dominique Devienne a écrit (2006-12-04, 16:31:19): >How about submitting a patch to Commandline with tests and docs, >instead of doing it on your side? Conditional arguments is useful in >general. You may have to wait for 1.7.1 to use it though. Sure. But I recently began to work with ant and I d

ANT_ARGS=-noclasspath -logger -cp

2006-12-04 Thread Murray, Mike
This looks like a bug to me, but am I overlooking some other way to accomplish this, besides setting the env classpath to the one jar that contains the custom logger class? (I've used a modified ant.bat for years to work around this, and I'm trying to get rid of my hacks.) When defining -noclass

Re: RE : AW: how to retrieve ant command line arguments on LINUX

2006-12-04 Thread Dominique Devienne
On 12/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Could you change the ant-script and export the variable for test? Maybe we can change that ... If we do this, we should be doing it in Launcher.java, not the .bat or .sh or .py or whatever else scripts, IMHO. --DD ---

AW: RE : AW: how to retrieve ant command line arguments on LINUX

2006-12-04 Thread Jan.Materne
Could you change the ant-script and export the variable for test? Maybe we can change that ... Jan >-Ursprüngliche Nachricht- >Von: Bernard LUPIN [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 4. Dezember 2006 17:22 >An: Ant Users List >Betreff: RE : AW: how to retrieve ant command line a

RE : AW: how to retrieve ant command line arguments on LINUX

2006-12-04 Thread Bernard LUPIN
Thank you for this advice. Unfortunately, the ant_exec_args is not exported, so it does not appear in the environment properties. I've made a diff beetween the output of using "ant" and "ant -verbose". With this way, I've found the ANT_CMD_LINE_ARGS under windows. But under linux, there are no ad

AW: how to retrieve ant command line arguments on LINUX

2006-12-04 Thread Jan.Materne
On Windows the ANT_CMD_LINE_ARGS environment variable is set by the launcher script bin\ant.bat. So the equivalent would be found in the unix launcher: bin/ant bin/ant:0024: for arg in "$@" ; do bin/ant:0031: elif [ my"$arg" = my"--h" -o my"$arg" = my"--help" ] ; then bin/ant:0032: show_h

how to retrieve ant command line arguments on LINUX

2006-12-04 Thread Bernard LUPIN
Hi all, Is it possible to retrieve the ant command line arguments (like -verbose, -quiet, ...) within an ant task ? On windows platforms, I've found that env.ANT_CMD_LINE_ARGS contains all the ant arguments, so I can parse them with the contrib's propertyregex task. But this don't work on my Linux

Re: Some problems extending ExecTask

2006-12-04 Thread Dominique Devienne
On 12/4/06, Pascal Quesseveur <[EMAIL PROTECTED]> wrote: I wanted to be able to use conditional args with an exec-like task (like the way compilerarg works in cc task). ... What can I do to achieve my goal as I don't want to rewrite entirely the Commandline and ExecuteOn tasks? How about submit

Re: please update the next release of Ant 1.7 to Xerces 2.9.0

2006-12-04 Thread Steve Loughran
Jacob Kjome wrote: Just wanted to note that I posted a message to the Xerces list. Here's a pointer to that email thread... http://marc.theaimsgroup.com/?l=xerces-j-dev&m=116499889520564&w=2 Jake Next question for them: are the classes compiled for use on 1.2? -steve --

Some problems extending ExecTask

2006-12-04 Thread Pascal Quesseveur
Hello, I wanted to be able to use conditional args with an exec-like task (like the way compilerarg works in cc task). So I have done the following things: - extend Commandline.Argument to Commandline.Xargument: that new class introduces 2 new attributes to manage if and unset condition

Re: How to refer PATH environment variable in Ant task

2006-12-04 Thread Dominique Devienne
the other half is solved by the .. would always work. How is made case-insensitive? Imagine I pass in the current path (let's assume the env. var is named Path) thru a CLI user property (named PATH) and I want to write: For this to work properly on Windows, the env. var. passed t

Re: please update the next release of Ant 1.7 to Xerces 2.9.0

2006-12-04 Thread Steve Loughran
Jacob Kjome wrote: Quoting Steve Loughran <[EMAIL PROTECTED]>: http://ibiblio.org/maven/xerces/ I see the 2.8.1 jars and poms there. I can ping the xerces list and get them to put the 2.9.0 versions out there. What's the time frame for the next release? Is it imminent? I can work on them