RE: Multiple fileset and filelist comparisons

2016-04-26 Thread Lancelot.MEURILLON
-Original Message- From: Matèrne, Jan (RZF, Aufg 481) [mailto:jan.mate...@fv.nrw.de] Sent: mardi 26 avril 2016 14:10 To: Ant Users List Subject: AW: Multiple fileset and filelist comparisons >If you just "upload" files, you could use the selector for getting >changed files (by content).

RE: Multiple fileset and filelist comparisons

2016-04-26 Thread Lancelot.MEURILLON
-Original Message- From: Dominique Devienne [mailto:ddevie...@gmail.com] Sent: mardi 26 avril 2016 13:11 To: Ant Users List Subject: Re: Multiple fileset and filelist comparisons > Then maybe > http://stackoverflow.com/questions/5940918/how-to-use-ants-sync-task-but-based-o

Re: Multiple fileset and filelist comparisons

2016-04-26 Thread Dominique Devienne
On Tue, Apr 26, 2016 at 12:09 PM, wrote: > Thanks for you answer Dominique > Actually I can't just simply synchronize remote repository in one shot. I > have this intermediary fileList because I need to update remote files > through different batches which can't exceed x number of files depending

RE: Multiple fileset and filelist comparisons

2016-04-26 Thread Lancelot.MEURILLON
al Message- From: Dominique Devienne [mailto:ddevie...@gmail.com] Sent: mardi 26 avril 2016 11:48 To: Ant Users List Subject: Re: Multiple fileset and filelist comparisons On Tue, Apr 26, 2016 at 11:25 AM, wrote: > I need to compare those 2 file trees to get desynchronized files from >

Re: Multiple fileset and filelist comparisons

2016-04-26 Thread Dominique Devienne
On Tue, Apr 26, 2016 at 11:25 AM, wrote: > I need to compare those 2 file trees to get desynchronized files from > 'DirRemote' (in order to synchronize them with the latest revision further). > Have a looked at the task? https://ant.apache.org/manual/Tasks/sync.html --DD

Re: Multiple Arguments Validation

2011-12-01 Thread Parag Doke
Hi Vinodh. Have you tried the contains or matches conditions ? I believe (haven't tried yet) what you are trying to achieve is doable using those. Refer link: http://ant.apache.org/manual/Tasks/conditions.html Hope this helps, Parag Doke Save paper, save trees. Do not print emails/documents unless

RE: Multiple artifacts

2010-10-25 Thread David Sills
Kirby: Many thanks for the suggestion. What I use are the defaults, so the problem hasn't arisen, but I take your point that being specific is the better approach. David Sills

Re: multiple switch case

2010-05-20 Thread Wascally Wabbit
You can try the task in the AntXtras antlib. URL: http://antxtras.sf.net Marco Gutsche wrote: Hello, it is possible to use multiple case in a switch command, for example: switch value: case a: case b: echo "a or b" case c: echo "c" Thank a

Re: multiple switch case

2010-05-17 Thread Marco Gutsche
Hello, Thanks, but I found this link and the example only shows one case and I'm not able to modify it to use multiple case for one following instruction (like my example). Regards Marco Am 17.05.2010 20:56, schrieb reno: Marco, a bit of "googling" will give you that link: http://ant-contr

Re: multiple switch case

2010-05-17 Thread reno
Marco, a bit of "googling" will give you that link: http://ant-contrib.sourceforge.net/tasks/tasks/switch.html hope this help S. Hello, it is possible to use multiple case in a switch command, for example: switch value: case a: case b: echo "a or b" case c: echo "c" Thank a lo

Re: multiple mappings and copy

2010-05-02 Thread Stefan Bodewig
On 2010-05-02, Patrick Martin wrote: > when using , are the source files > read only once or as many times as there are mappings? As many times as there are target files. Stefan - To unsubscribe, e-mail: user-unsubscr...@ant.a

Re: multiple artifact confs: wanting AND instead of OR

2009-07-28 Thread Niklas Matthies
On Mon 2009-07-27 at 21:17h, Mitch Gitman wrote on ivy-user: : > The problem is you can't specify the intersection on the artifacts: > > > The onus is on the consumer (the dependent Ivy module) to specify the > intersection and not the union. Which, by the way, is dangerous, because the publis

Re: Multiple artifacts of the module commons-logging#commons-logging;1.1.1 are retrieved to the same file!

2009-05-26 Thread Archie Cobbs
Not sure what's going on then... -Archie On Tue, May 26, 2009 at 12:09 PM, Nathaniel Auvil wrote: > thanks for the reply. i replaced the jar with [type] and i get the same > error > > > On Tue, May 26, 2009 at 1:05 PM, Archie Cobbs >wrote: > > > You probably need to include [type] in your pat

Re: Multiple artifacts of the module commons-logging#commons-logging;1.1.1 are retrieved to the same file!

2009-05-26 Thread Archie Cobbs
You probably need to include [type] in your pattern. Try something like pattern="lib/[conf]/[type]/[artifact].[revision].[ext]" instead. -Archie On Tue, May 26, 2009 at 12:02 PM, Nathaniel Auvil wrote: > I am getting the following error: > > java.lang.RuntimeException: Multiple artifacts of the

RE: Multiple conditions satisfying in an ant target

2008-10-31 Thread sukanya
Hi Gilbert, It works!. I forgot to mention tat either one of these these conditions may be false and still should work. I replaced with and that also works :) thanks so much for your timely help. Rebhan, Gilbert wrote: > > > -Original Message- > From: sukanya [mailto:[EMAIL PROTECT

RE: Multiple conditions satisfying in an ant target

2008-10-31 Thread Rebhan, Gilbert
-Original Message- From: sukanya [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2008 8:48 AM To: user@ant.apache.org Subject: Multiple conditions satisfying in an ant target /* [...] Start something new Here how do i inclue isbad also as an unless conditio

Re: multiple project setup

2008-10-22 Thread Archie Cobbs
Not sure if this will work or not, but you might try turning off caching and setting useOrigin="true" everywhere... -Archie On Wed, Oct 22, 2008 at 4:48 PM, Greg George <[EMAIL PROTECTED]> wrote: > Hi, > > I'm looking into whether Ivy might be a good fit for our build system. We > have a multi-

Re: multiple ${values} not extracting the actual value

2008-09-17 Thread Krzysieq
Hi, May be quite a silly idea, but is it not possible, that somewhere down the road You define version as empty string? If it weren't defined at all, You would see ${version} in the filename, and You say it disappears. Maybe it's accidentaly defined as empty before propfile is read? Cheers, Chris

Re: Multiple

2008-07-05 Thread David Weintraub
Take a look at filtering when you do a . In your files, you put target strings like "@serverName@" and "@[EMAIL PROTECTED] Here's an example from one of my build.xml: The sub-task does the replacement. It finds all the t

RE: Multiple

2008-07-03 Thread Raymond Berg (ALLETE)
ut, but thanks again! I'm off to finish the job! -Raymond -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 2:02 PM To: Ant Users List Subject: RE: Multiple Why not use the existing replace task with the replacefilterfile att

RE: Multiple

2008-07-03 Thread Raymond Berg (ALLETE)
evaluate files and perform multiple replacements on each provided string. My apologies for the confusion. -Raymond -Original Message- From: Jim Cant [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2008 8:40 PM To: user@ant.apache.org Subject: Re: Multiple If I understand your pr

Re: Multiple

2008-07-02 Thread Jim Cant
If I understand your problem correctly, what you are trying to do is do a global search and replace in a file. I don't think ant is the appropriate tool for this; I'd suggest Perl. Here's a command that replaces every occurence of each pattern in a line for all lines in a file and saves the orig

Re: Multiple

2008-07-01 Thread Gilbert Rebhan
Raymond Berg (ALLETE) schrieb: I've got a situation where I need to search deployment files for various server names of a variable count when moving from staging to production automatically. However, I can't seem to figure out how to handle a dynamic replace count. sorry - it's not clear to me

RE: Multiple

2008-07-01 Thread Anderson, Rob (Global Trade)
Why not use the existing replace task with the replacefilterfile attribute? I'm not sure what you mean by 'dynamic replace count'. -Rob Anderson -Original Message- From: Raymond Berg (ALLETE) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 11:45 AM To: Ant Users List Subject: Mult

RE: Multiple junit tasks

2007-04-23 Thread Sean Tiley
failed" in both targets can the second target Modify the property? Thanks again. Sean -Original Message- From: Gilles Scokart [mailto:[EMAIL PROTECTED] Sent: Monday, April 23, 2007 3:25 PM To: Ant Users List Subject: Re: Multiple junit tasks Use Test failed 2007/4/23, Sean Til

Re: Multiple junit tasks

2007-04-23 Thread Gilles Scokart
Use Test failed 2007/4/23, Sean Tiley <[EMAIL PROTECTED]>: Hi There, I have 2 targets that run unit tests during the course of my build, (JUnit tests pre deployment and HttpUnit tests post deployment). I would like for all tests in both targets to be executed regardless of whether or not failur

Re: Multiple files to task

2007-01-20 Thread Peter Kennard
OK - convoluted nastiness but it works to make a quoted space delimited list of file names. The two "commands" below are needed to translate all the '/' to ${file.separator} s in the original property which are coded with '/' separators. and expand it to the full path so it will compare charac

Re: Multiple files to task

2007-01-19 Thread Peter Kennard
well got 80% of the way there :) The below will make a list of the filename surrounded by quotes. (havn't tried it as part of a line= constrct yet. However I noticed a buggaboo - the only does simple string substitution so unless you specify ${path.separator} for every in

Re: Multiple files to task

2007-01-19 Thread Peter Kennard
Thanks The files may not but the paths they are in might. Can "pathconvert" manage to put quotes around all the entries? (I'll have to look up what pathconvert is :) Too bad there isn't a nested "fileset" in in an or item to do just this since many command line utilities do it like compile

Re: Multiple files to task

2007-01-19 Thread Antoine Levy-Lambert
Hi, if your list of file is not too long, that is if you are not going to overflow the maximum for command lines (4096 chars under Windows I think), and if none of your files contain spaces in their names or directories, you can use pathconvert to generate a property from a fileset. Then

RE: Multiple .properties in the same ANT

2006-08-14 Thread LIRA Olavo
ed more > precisions. Thanks!! > > > Olavo Lira > > -Original Message- > From: Burgess, Benjamin [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 1:34 PM > To: Ant Users List > Subject: RE: Multiple .propert

Re: Multiple .properties in the same ANT

2006-08-14 Thread glenn opdycke-hansen
m: Burgess, Benjamin [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 1:34 PM To: Ant Users List Subject: RE: Multiple .properties in the same ANT You will have to give more information (such as the contents of your build.xml). Can you use a macrodef to define the target and have it take in the na

RE: Multiple .properties in the same ANT

2006-08-14 Thread Burgess, Benjamin
Ant Users List Subject: RE: Multiple .properties in the same ANT Hi Ben, Did you had a chance to look into my Build.xml? I understand what you have said about passing the .properties dynamically, this I can do, what I don't know how to do is to run "n" times the same ANT w

RE: Multiple .properties in the same ANT

2006-08-14 Thread LIRA Olavo
t me know if it's not clear or if you need more precisions. Thanks!! Olavo Lira -Original Message- From: Burgess, Benjamin [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 1:34 PM To: Ant Users List Subject: RE: Multiple .propertie

RE: Multiple .properties in the same ANT

2006-08-10 Thread LIRA Olavo
>You will have to give more information (such as the contents of your >build.xml). >Can you use a macrodef to define the target and have it take in the name >of the properties file as an argument? Then the macrodef can load the >properties with a prefix based on the argument. Hi Ben,

RE: Multiple .properties in the same ANT

2006-08-10 Thread Burgess, Benjamin
You will have to give more information (such as the contents of your build.xml). Can you use a macrodef to define the target and have it take in the name of the properties file as an argument? Then the macrodef can load the properties with a prefix based on the argument. Ben -Original Messa

Re: Multiple directories

2006-06-08 Thread Ben Stringer
On Thu, 2006-06-08 at 09:02 +0100, David Bates wrote: > I have the following target: > > > > > > > > > > > > > > > > > > > > > > > > > > I run this prior to doing a deployment to ensure we have a backup of > what was on the server i

RE: Multiple JVM

2006-04-18 Thread Guttula, Mohan
not sure if you were running into the same issue. Thanks, Mohan -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 18, 2006 12:07 PM To: Ant Users List Subject: Re: Multiple JVM Bandaru, Jaysheel wrote: > Thanks Antoine for your help. Following is th

Re: Multiple JVM

2006-04-18 Thread Antoine Levy-Lambert
Bandaru, Jaysheel wrote: Thanks Antoine for your help. Following is the verbose : Apache Ant version 1.5.3 compiled on August 13 2003 Buildfile: .\project.xml Detected Java version: 1.4 in: C:\bea\jdk141_05\jre Detected OS: Windows XP parsing buildfile .\project.xml with URI = file:C:/scripts/.

RE: Multiple JVM

2006-04-18 Thread Bandaru, Jaysheel
-Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Monday, April 17, 2006 5:00 PM To: Ant Users List Subject: Re: Multiple JVM Bandaru, Jaysheel wrote: > Antoine - > > I do not use the ant command to execute my task but I do the following > >

Re: Multiple JVM

2006-04-17 Thread Antoine Levy-Lambert
Bandaru, Jaysheel wrote: Antoine - I do not use the ant command to execute my task but I do the following %JAVA_HOME%\bin\java -ms4m -mx100m -Dant.home=%ANT_HOME%org.apache.tools.ant.Main -buildfile .\myBuild.xml %PARAMS% Actually I used verbose option with the java command. Is there a way

RE: Multiple JVM

2006-04-17 Thread Bandaru, Jaysheel
ant call? Thanks -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 9:08 AM To: Ant Users List Subject: Re: Multiple JVM Jaysheel, Actually, I would expect ant -verbose to be enough. You should see some messages of the java command

Re: Multiple JVM

2006-04-13 Thread Antoine Levy-Lambert
your time. Thanks -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 8:08 AM To: Ant Users List Subject: Re: Multiple JVM Antoine Levy-Lambert wrote: Martijn Kruithof wrote: Hi Is it an option to use JDK 1.5 completely and

RE: Multiple JVM

2006-04-13 Thread Bandaru, Jaysheel
:\bea\jdk141_05\jre\lib\rt.jar] Appreciate your time. Thanks -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 8:08 AM To: Ant Users List Subject: Re: Multiple JVM Antoine Levy-Lambert wrote: > Martijn Kruithof wrote: > >>

Re: Multiple JVM

2006-04-13 Thread Antoine Levy-Lambert
Antoine Levy-Lambert wrote: > Martijn Kruithof wrote: > >> Hi >> >> Is it an option to use JDK 1.5 completely and specify the source ant >> target attributes >> > Martijn, Jaysheel wants to use , not ;-) > >> Martijn >> >> >> >>> >>> >>> >>> >>> >>> >>>

Re: Multiple JVM

2006-04-13 Thread Antoine Levy-Lambert
Martijn Kruithof wrote: > Hi > > Is it an option to use JDK 1.5 completely and specify the source ant > target attributes Martijn, Jaysheel wants to use , not ;-) > > > Martijn > > >> >> >> >> >> >> >> >> >> >> >> >> >> >> Hello Jaysheel, I would be

Re: Multiple JVM

2006-04-12 Thread Martijn Kruithof
Hi Is it an option to use JDK 1.5 completely and specify the source ant target attributes Martijn Bandaru, Jaysheel wrote: Hi - I have a build file which uses JDK1.4 to compile(javac) and run the java tasks , in the build file I have task which executes a jar file compiled using JDK1.5 .

RE: Multiple JVM

2006-04-12 Thread Bandaru, Jaysheel
April 12, 2006 10:29 PM To: Ant Users List Subject: Re: Multiple JVM Bandaru, Jaysheel wrote: Hello Jaysheel, two ideas : run your build in debug (ant -debug) or verbose (-verbose) mode to get a better feeling of what is happening in the case you are starting from ant running in a JDK 1.4 VM.

Re: Multiple JVM

2006-04-12 Thread Antoine Levy-Lambert
Bandaru, Jaysheel wrote: Hello Jaysheel, two ideas : run your build in debug (ant -debug) or verbose (-verbose) mode to get a better feeling of what is happening in the case you are starting from ant running in a JDK 1.4 VM. Also try to nest in an element to tell java where is your JAVA_HOME

RE: multiple excludes clause ??

2005-09-09 Thread Burgess, Benjamin
To: Ant Users List Subject: Re: multiple excludes clause ?? What is the context in which you are using the and what have you tried already? By looking through the ANT docs, I can think of two options: 1) Add another sub-element with the second exclude pattern 2) Use the excludesfile attribute

RE: multiple excludes clause ??

2005-09-07 Thread Rainer Noack
Best practise is using nested elements. Cheers Rainer > -Original Message- > From: Rambo Mahajan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 07, 2005 3:21 PM > To: user@ant.apache.org > Subject: multiple excludes clause ?? > > > Hi > > I would like 2 excludes

Re: multiple excludes clause ??

2005-09-07 Thread Ninju Bohra
What is the context in which you are using the and what have you tried already? By looking through the ANT docs, I can think of two options: 1) Add another sub-element with the second exclude pattern 2) Use the excludesfile attribute and reference a file that contains all your exclude patterns

RE: Multiple invocations

2005-08-31 Thread Anderson, Rob (Global Trade)
. Thanks, -Rob A > -Original Message- > From: Dick, Brian E. [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 31, 2005 5:57 AM > To: Ant Users List > Subject: RE: Multiple invocations > > I cast my vote. > > Also, in order to get the sshexec output corre

RE: Multiple invocations

2005-08-31 Thread Dick, Brian E.
task like the exec task has. I use the redirector with the exec task and it really helps make the build output clean. -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 30, 2005 5:03 PM To: Ant Users List Subject: RE: Multiple

RE: Multiple invocations

2005-08-30 Thread Anderson, Rob (Global Trade)
Cool. Please vote for the bug also. Votes help commiters prioritize the bugs. -Rob A > -Original Message- > From: Dick, Brian E. [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 30, 2005 10:23 AM > To: Ant Users List > Subject: RE: Multiple invocations > > Than

RE: Multiple invocations

2005-08-30 Thread Dick, Brian E.
Thanks Rob. I applied the fix to my copy of the 1.6.5 source. Works great! -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 30, 2005 12:36 PM To: Ant Users List Subject: RE: Multiple invocations As far as I know, it has not been

RE: Multiple invocations

2005-08-30 Thread Anderson, Rob (Global Trade)
mailto:[EMAIL PROTECTED] > Sent: Monday, August 29, 2005 1:50 PM > To: Ant Users List > Subject: RE: Multiple invocations > > Has this bug fix been committed? I am experiencing the same problem. > > -Original Message- > From: Anderson, Rob (Global Trade) [mailto:[EMAI

RE: Multiple invocations

2005-08-29 Thread Dick, Brian E.
Has this bug fix been committed? I am experiencing the same problem. -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 17, 2005 12:21 PM To: Ant Users List Subject: RE: Multiple invocations The build file in the bug report is what

Re: Multiple invocations

2005-08-17 Thread Atsuhiko Yamanaka
Hi, +-From: "Anderson, Rob (Global Trade)" <[EMAIL PROTECTED]> -- |_Date: Tue, 16 Aug 2005 10:47:25 -0700 _ | |There is a new issue that comes to light, once again. |See the output below... | |Buildfile: ssh_twice_build.xml | |linux: | [sshex

RE: Multiple invocations

2005-08-17 Thread Anderson, Rob (Global Trade)
The build file in the bug report is what I used to test it. Is that sufficient? -Rob A > -Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 17, 2005 4:57 AM > To: Ant Users List > Subject: Re: Multiple invocations > > &g

Re: Multiple invocations

2005-08-17 Thread Steve Loughran
Anderson, Rob (Global Trade) wrote: I have logged a bug for this issue and attached a patch... http://issues.apache.org/bugzilla/show_bug.cgi?id=36207 Committers: Please review the proposed fix and commit the change if you approve. Thanks, -Rob Anderson do we have any tests for this (or oth

RE: Multiple invocations

2005-08-16 Thread Anderson, Rob (Global Trade)
> Sent: Tuesday, August 16, 2005 10:47 AM > To: dev@ant.apache.org > Cc: user@ant.apache.org; [EMAIL PROTECTED] > Subject: RE: Multiple invocations > > > That patch does not seem to work. setPassword() is only > called once when connecting to the same host again. I have

RE: Multiple invocations

2005-08-16 Thread Anderson, Rob (Global Trade)
this bug in the past, but no resolution. I tried to look into it, but found myself in over my head. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, August 15, 2005 9:28 PM > To: Anderson, Rob (Global Trade) > Cc: user@ant.apac

Re: Multiple invocations

2005-08-15 Thread Atsuhiko Yamanaka
Hi, +-From: "Anderson, Rob (Global Trade)" <[EMAIL PROTECTED]> -- |_Date: Mon, 15 Aug 2005 11:53:12 -0700 _ | |Try the same tests with jsch 0.1.16. What are the results? I |believe these are problems with Jsch. -Rob Anderson ... |> BUILD FAILED |> P

RE: Multiple invocations

2005-08-15 Thread Anderson, Rob (Global Trade)
Try the same tests with jsch 0.1.16. What are the results? I believe these are problems with Jsch. -Rob Anderson > -Original Message- > From: Dominique Devienne [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 11, 2005 2:27 PM > To: 'Ant Users List' > Subject: Multiple invocations >

Re: Multiple invocations

2005-08-11 Thread Robert Koberg
Dominique Devienne wrote: Note that I tried Ant 1.6.5 and 1.7 (CVS HEAD), with the same Jsch and they all behave the same way. Maybe I need to try an older version of Jsch... --DD no - it has been like this for a while (at least a couple of years). *Please* someone tell me I am wrong. (and how

Re: Multiple invocations

2005-08-11 Thread Dominique Devienne
Note that I tried Ant 1.6.5 and 1.7 (CVS HEAD), with the same Jsch and they all behave the same way. Maybe I need to try an older version of Jsch... --DD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Multiple IFs, or IFs on tasks

2005-06-23 Thread Frank W. Zammetti
Ah, thank you Ninju! I wasn't aware of the task, I think that will do the trick. One extra step, but not a hassle. By the way, your name is only one letter off from ultimate coolness, but I'm sure you know that already :) -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Techn

Re: Multiple IFs, or IFs on tasks

2005-06-23 Thread Ninju Bohra
Correct on both counts, For the first one, you may want to use a task to "consolidate" all the individual flags into one property which you use in the if="" attribute. As for the second, it is touch-and-go as to which tasks have an if/unless attribute (i.e. some have them and some don't). T

RE: multiple compilations

2005-05-27 Thread McIntosh, Stephen
Thank you for your help, Rob. -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Thursday, May 26, 2005 7:34 PM To: Ant Users List Subject: RE: multiple compilations Setting a property if any compilation fails would work. Try using the ant-conrti

Re: multiple compilations

2005-05-26 Thread Dominique Devienne
> > > > > > > > > > That's kind of ugly, although necessary right now. does have failonerror, but misses failureproperty, so you have to resort to Ant-Contrib's . failonrerror/failureproperty is yet another feature implemented at the task level instead

RE: multiple compilations

2005-05-26 Thread Anderson, Rob (Global Trade)
Setting a property if any compilation fails would work. Try using the ant-conrti task. Something like this... One of the compiles failed.

Re: multiple src folders for javac task

2005-04-26 Thread Jeffrey E Care
The manual is located here: http://ant.apache.org/manual/index.html What you want to do is pretty well documented there. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere Build SWAT Team Lead WebSphere Build Tooling Lead (Project Mantis) https://w3.opensource.ibm.com/projects/mantis klute

Re: multiple src folders for javac task

2005-04-26 Thread Ivan Ivanov
Hello, you can do this with nested tag of task: HTH Ivan --- klute <[EMAIL PROTECTED]> wrote: > hey all, > > can anyone tell me how to supply multiple src > folders > for my javac task? > > thanks a lot! > james > > __ > Do Y

Re: multiple src folders for javac task

2005-04-26 Thread Brad G. Kyer
use : to add them - for example -B --- klute <[EMAIL PROTECTED]> wrote: > hey all, > > can anyone tell me how to supply multiple src folders > for my javac task? > > thanks a lot! > james > > __ > Do You Yahoo!? > Tired of s

Re: multiple jars

2005-03-14 Thread James Fuller
THUFIR HAWAT wrote: I've got some source and build files at. is it possible to compile both source files to make two .jar files from one build file? you can of course compile with Ant using the task (as many times as you want), then use Ant's task (as many time

RE: Multiple if or unless conditions?

2005-03-09 Thread Dominique Devienne
> From: Baker, Derek [mailto:[EMAIL PROTECTED] > > Is it possbile to have multiple if or unless conditions? [target > name="foo" > if="property1, property2"] No. Combine the conditions with , in a target that 'name' would depend on (or at the top level). --DD

Re: Multiple loggers?

2005-02-22 Thread Frank W. Zammetti
Thank you Stefan, that did the trick! I read the logger/listener part of the docs, but I misunderstood it... I thought that listeners didn't recieve all the same input as do loggers, so I didn't think I would get everything in the log file as I do in the console window. I tried it as you said tho

Re: Multiple loggers?

2005-02-22 Thread Stefan Bodewig
On Tue, 22 Feb 2005, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > Is it possible to specify more than one logger on the command line? Only one -logger, but multiple -listeners. > Specifically, I want to see the build output in the console as I do > when no logger is specified, but I'd IN ADDIT

RE: Multiple source paths for javac

2004-02-20 Thread Jan . Materne
like the manual sais ... Jan > -Original Message- > From: Matt Benson [mailto:[EMAIL PROTECTED] > Sent: Friday, February 20, 2004 5:06 PM > To: Ant Users List > Subject: Re: Multiple source paths for javac > > > --- "Digambar, Shaligram (Con

Re: Multiple source paths for javac

2004-02-20 Thread Matt Benson
--- "Digambar, Shaligram (Consultant)" <[EMAIL PROTECTED]> wrote: > I have a javac task that looks like > srcdir="buildroot/${srcPath}"> > where I have defined srcPath in properties file as > srcPath=src/folder1:src/folder2 > want. I want the the srcdir path as > "buildroot/src/folder1:buildroo

RE: multiple commands with same ssh connection

2004-01-23 Thread Anderson, Rob (Global Trade)
Yes, Line them up in the command attribute separated by a ";". Multiple command attributes are not supported. -Rob Anderson -Original Message- From: Jacob, Anil - MWT [mailto:[EMAIL PROTECTED] Sent: Friday, January 23, 2004 10:41 AM To: Ant Users (E-mail) Subject: multiple commands w

Re: multiple commands with same ssh connection

2004-01-23 Thread Clifton C. Craig
If your target system is Linux try: That's how I do it at least. Clifton C. Craig, Software Engineer Intelligent Computer Systems - A Division of GBG 2101 Embassy Drive Lancaster, PA 17603 Phone: 717-295-7977 ext. 621 Fax: 717-295-7683 [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: multiple selection of classpath??

2003-12-15 Thread barry
Antonine, What should be the content of the init.tomcat? I think I am trying to do the same thing like you said but the classpath defined in init.tomcat does not seem to recongised in other parts of build.xml... Please see the other email for detail codes. Thanks BArry Quoting Antoine Lévy-L

Re: multiple selection of classpath??

2003-12-15 Thread Antoine Lévy-Lambert
[EMAIL PROTECTED] wrote: All, 1. How can I select multiple classpath? I would like to be able NOT to define CATALINA_HOME for tomcat if not compiling things for tomcat, and just use J2EE... the normal ant way is then to define one different init target for each variant of your build or de

RE: multiple args to java task

2003-10-21 Thread Amit Kulkarni
> > If you haven´t a complex start procedure for the decompiler maybe you > > can use here. > > > > > > > > > > > > > > > > > > > > > ... maybe we should give the ability to start java apps ... > > Discussed before (at least a couple time I can remember), and rejected

RE: multiple args to java task

2003-10-21 Thread Amit Kulkarni
> > If you haven´t a complex start procedure for the decompiler maybe you > > can use here. > > > > > > > > > > > > > > > > > > > > > ... maybe we should give the ability to start java apps ... > > Discussed before (at least a couple time I can remember), and rejected

Re: multiple args to java task

2003-10-21 Thread peter reilly
On Tuesday 21 October 2003 15:16, Dominique Devienne wrote: > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > > > If you haven´t a complex start procedure for the decompiler maybe you > > can use here. > > > > > > > > > > > > > > > > > > > > > ... maybe we should give

RE: multiple args to java task

2003-10-21 Thread Dominique Devienne
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > If you haven´t a complex start procedure for the decompiler maybe you > can use here. > > > > > > > > > > ... maybe we should give the ability to start java apps ... Discussed before (at least a couple time I can