Re: Different indices not repected in Epub3 transformation with ant 1.9.8

2020-12-13 Thread Peter West
some hints here. > Or a sample project (e.g. on Github) showing the problem? > > Jan > > -Ursprüngliche Nachricht- > Von: Bernhard Kleine > Gesendet: Samstag, 12. Dezember 2020 13:31 > An: user@ant.apache.org > Betreff: Different indices not repected in Epub3 tra

AW: Different indices not repected in Epub3 transformation with ant 1.9.8

2020-12-13 Thread apache
liche Nachricht- Von: Bernhard Kleine Gesendet: Samstag, 12. Dezember 2020 13:31 An: user@ant.apache.org Betreff: Different indices not repected in Epub3 transformation with ant 1.9.8 Hi, my first contribution, I am working with oxygen 20.1 xml-editor. while docbook to pdf transformati

Different indices not repected in Epub3 transformation with ant 1.9.8

2020-12-12 Thread Bernhard Kleine
Hi, my first contribution, I am working with oxygen 20.1 xml-editor. while docbook to pdf transformation does respect different indices, during the generation of an epub with ant it is not respcted. The following is totally mixed up.        Scientific names             Deutsche

ant sql task in different jvm

2012-07-11 Thread vineet arora
Hi, I am new to ant and before sending mail to this list I explored the issue on google but didn't get any satisfactory results. In one of my project, I require to run the below sql task in a different jvm. Actually in my build.xml file, I call a junit test using junit task and in

Deleteing Diretories by date (that contain files with different dates)

2011-07-16 Thread tuckers
to completely remove the 12/07, 11/07 and 10/07 directories. Each of the top level directories have many sub directories and files (the files may have a different time stamp aswell as the subdirectories). I have almost got an ant script that works but just need the last bit. The script looks

Re: different patterns per configuration

2011-06-30 Thread Shaka Tard
Oh, that's actually not too bad. I hope other more experienced folks would be willing to correct me if I am wrong, but this seems fairly straightforward. You would use ivy:retrieve twice in your ANT script to get the libraries from your local cache, and the pattern you use inside there will dicta

Re: different patterns per configuration

2011-06-30 Thread teknokrat
Shaka Tard writes: > > Teknocrat, > > First, are you saying you need to see both jars, for instance, like this? > > commons-lang.jar > commons-lang-1.6.10.jar no, I want some jars going into conf1 as foo-1.2.jar and others going into conf2 as bar.so I am doing JNI and using ivy to store some

Re: Publishing C-module artifacts from different platforms

2011-01-13 Thread Tim Brown
sion and pops the released off the stack. Jacob (cc'ed) can probably give the sorted details if it's of use. On Thu, Jan 13, 2011 at 8:10 AM, Shawn Castrianni < shawn.castria...@halliburton.com> wrote: > I tried Bamboo and Hudson 2 years ago when I was evaluating all of the &

Re: two listeners but only different logging

2010-10-22 Thread Stefan Bodewig
runk/src/main/java/net/sf/antcontrib/perf/AntPerformanceListener.java?view=markup> you can tell the performance listener to write its information to a file but there is no way to make it not write to System.out - this means its output will always end up being sent to the console unless you use a (d

RE: two listeners but only different logging

2010-10-22 Thread Martin Gainty
i, 22 Oct 2010 04:36:07 -0700 > From: kiran.c...@wipro.com > To: user@ant.apache.org > Subject: two listeners but only different logging > > > Hi, > I am using two listeners : > net.sf.antcontrib.perf.AntPerformanceListener > org.apache.tools.ant.listener.Log4jListener &g

two listeners but only different logging

2010-10-22 Thread ciba
ement this differentiated behaviour of listeners in ant? -- View this message in context: http://ant.1045680.n5.nabble.com/two-listeners-but-only-different-logging-tp3232109p3232109.html Sent from the Ant - Users mailing list archive at

Re: AW: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-23 Thread td.com
Allow me to be more specific in what I think is strange in the decompiled bytecode. Say we have a test class as follows: /* Class to test different javac options */ import java.io.File; import java.io.IOException; class Hello { public static void main(String[] a

Re: AW: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-21 Thread td.com
Hello all! The decompiler produces the exact same output every time (both for Ant-Javac and "command line"-Javac) and the Ant-Javac output it always different from the "command-line"-Javac Brian Pontarelli wrote: > > I would think it would produce the e

Re: AW: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-21 Thread Brian Pontarelli
I would think it would produce the exact same output each time unless it is using some type of system dependent code or timestamps. -bp On Nov 21, 2009, at 6:41 AM, Ziggy wrote: > I would have thought that the decompiling is the reason they are different. > Do you get the same result wh

Re: AW: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-21 Thread Ziggy
I would have thought that the decompiling is the reason they are different. Do you get the same result when you decompile the same file twice? I am not an expert but i think the decompiler can produce different code that achieves the same thing. Try to decompile the same file twice and see if the

Re: AW: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-20 Thread td.com
Hello all and thanks for your replies By different I mean that once decompiled (with jd) or dissassembled with javap, the resulting files are different. In order to use the same javac options on the command line, I ran Ant with the -debug option. That being done I was able to copy the

AW: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-20 Thread Knuplesch, Juergen
You probably use a different JDK (e.g. Eclipse uses his own javac) or different options. What exactly do you do in Ant javac and the other javac? -- Jürgen Knuplesch - Von: td.com [mailto:lydie.comp...@td.com] Gesendet: Freitag, 20. November 2009 16:40 An: user@ant.apache.org Betreff

Re: java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-20 Thread Scot P. Floess
Curious - what do you mean different? On Fri, 20 Nov 2009, td.com wrote: Hello All, when compiling using the Ant javac task on my machine (JDK1.5) I end up getting bytecode that's different then when I compile the same code on the same machine but through the command line javac.

java bytecode produced by "Ant javac" different from "command line javac" bytecode

2009-11-20 Thread td.com
Hello All, when compiling using the Ant javac task on my machine (JDK1.5) I end up getting bytecode that's different then when I compile the same code on the same machine but through the command line javac. Does anyone know what could be causing this? Thanks in advance! -- View this me

RE: Different revision schemes for different status

2009-10-27 Thread Glidden, Douglass A
t-strategies.html) for more details on setting up custom latest-strategies. Doug Glidden Software Engineer The Boeing Company douglass.a.glid...@boeing.com -Original Message- From: felix...@web.de [mailto:felix...@web.de] Sent: Tuesday, October 27, 2009 15:44 To: ivy-u...@ant.apache.org

Re: archive tasks make output in different size

2009-10-11 Thread Stefan Bodewig
same build.xml), Although > there is no file is edited or added or replaced, my ear file size is > changed. ears contain wars that contain jars, right? If your jar has a different creation time than the old one it will have a different timestamp entry inside the war you create. This shou

archive tasks make output in different size

2009-10-10 Thread özgür yıldız
hi all,I use Apache Ant version 1.7.0. And I use ant archive tasks to get ABC.ear. I need to compare size of output archives(ABC.ear) with older one in order to realize any of changes. When I run the build.xml one after another(the same build.xml), Although there is no file is edited or added or

Re: Launching a different java executable from within ant

2009-08-19 Thread Francis GALIEGUE
On Thu, Aug 20, 2009 at 07:13, wrote: > ... > It did the trick, thanks! I thought it would be more complicated than that... -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +33 (0) 683 877 875 Tel : +33 (0) 178 945 552 f...@one2team.com 40 avenue Raymond Poincaré 75116 Paris -

AW: Launching a different java executable from within ant

2009-08-19 Thread Jan.Materne
... Jan >-Ursprüngliche Nachricht- >Von: Francis GALIEGUE [mailto:f...@one2team.com] >Gesendet: Mittwoch, 19. August 2009 17:17 >An: Ant Users List >Betreff: Launching a different java executable from within ant > >Hello, > >I have a very annoying problem.

Launching a different java executable from within ant

2009-08-19 Thread Francis GALIEGUE
shell script, that for this particular java task, we want a different JAVA_HOME and/or JDK_HOME? Thanks, -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +33 (0) 683 877 875 Tel : +33 (0) 178 945 552 f...@one2team.com 40 avenue Raymond Poincaré 75116

[Ant 1.7.1] Problem with records task logging different targets via antcall

2009-04-06 Thread Grimm, Markus
Hi all, I upgraded my ant installation from 1.6.5 to 1.7.1 now I've got the follwing problem with the record-task. Look at this sample script:

Re: How to import a Java class from a package in a different folder

2009-01-13 Thread Patrick Waugh
> so that I can use Launcher.java inside LauncherClient? > > Thanks in advance > > > > -- > View this message in context: > http://www.nabble.com/How-to-import-a-Java-class-from-a-package-in-a-different-folder-tp21436397p21436397.html > Sent from the Ant - Users mailing list archive a

How to import a Java class from a package in a different folder

2009-01-13 Thread ilango_g
e failed so far. How can I accomplish this import so that I can use Launcher.java inside LauncherClient? Thanks in advance -- View this message in context: http://www.nabble.com/How-to-import-a-Java-class-from-a-package-in-a-different-folder-tp21436397p21436397.html Sent from the Ant - Users mai

Re: differenet ant script for different plateform?

2008-11-28 Thread Kate McCole
[EMAIL PROTECTED]> wrote: >> >> Hi, I'm new to ant and I have to write an ant build. >> I saw some tasks requires os and are very specific such as . >> Does it mean I have to write one script for each plateform?? >> -- >> View this message in context: &g

Re: differenet ant script for different plateform?

2008-11-28 Thread Patrick Waugh
ild. > I saw some tasks requires os and are very specific such as . > Does it mean I have to write one script for each plateform?? > -- > View this message in context: > http://www.nabble.com/differenet-ant-script-for-different-plateform--tp20737822p20737822.html > Sent from the

differenet ant script for different plateform?

2008-11-28 Thread Kate McCole
Hi, I'm new to ant and I have to write an ant build. I saw some tasks requires os and are very specific such as . Does it mean I have to write one script for each plateform?? -- View this message in context: http://www.nabble.com/differenet-ant-script-for-different-plat

AW: AW: AW: Inserting different relative paths into multiple files using the same token

2008-11-10 Thread Jan.Materne
>-Ursprüngliche Nachricht- >Von: jbmdharris [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 10. November 2008 15:20 >An: user@ant.apache.org >Betreff: Re: AW: AW: Inserting different relative paths into >multiple files using the same token > > >I could implement this

Re: AW: AW: Inserting different relative paths into multiple files using the same token

2008-11-10 Thread jbmdharris
ething new in the environment requires work and proof that it's really necessary. So, I'm trying to use the built-in capabilities of the environment provided to me. At least I have ant-contrib available... -- View this message in context: http://www.nabble.com/Inserting-different

AW: AW: Inserting different relative paths into multiple files using the same token

2008-11-10 Thread Jan.Materne
You could rewrite that in Java and that class. Jan >-Ursprüngliche Nachricht- >Von: jbmdharris [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 10. November 2008 13:03 >An: user@ant.apache.org >Betreff: Re: AW: Inserting different relative paths into >multiple files us

Re: AW: Inserting different relative paths into multiple files using the same token

2008-11-10 Thread jbmdharris
My build environment doesn't include Rhino for executing JavaScript in Java and it's unlikely that I would be allowed to add it. -- View this message in context: http://www.nabble.com/Inserting-different-relative-paths-into-multiple-files-using-the-same-token-tp20411245p20418710.html

AW: Inserting different relative paths into multiple files using the same token

2008-11-09 Thread Jan.Materne
} Jan >-Ursprüngliche Nachricht- >Von: jbmdharris [mailto:[EMAIL PROTECTED] >Gesendet: Sonntag, 9. November 2008 22:50 >An: user@ant.apache.org >Betreff: Inserting different relative paths into multiple >files using the same token > > >I have m

Re: Inserting different relative paths into multiple files using the same token

2008-11-09 Thread jbmdharris
this. -- View this message in context: http://www.nabble.com/Inserting-different-relative-paths

Inserting different relative paths into multiple files using the same token

2008-11-09 Thread jbmdharris
I have many different HTML files in different directories. I'm already using the task with a to replace tokens in these files. I'm trying to figure out how to create a token like @ROOTPATH@ that will always resolve to the proper number of "../" patterns to get from the

Re: Ant: invoke in a different directory?

2008-08-26 Thread David W
Works perfect! Thanks Scot!!   David --- On Mon, 8/25/08, Scot P. Floess <[EMAIL PROTECTED]> wrote: From: Scot P. Floess <[EMAIL PROTECTED]> Subject: Re: Ant: invoke in a different directory? To: "Ant Users List" , [EMAIL PROTECTED] Date: Monday, August 25, 2008, 6:4

Re: Ant: invoke in a different directory?

2008-08-25 Thread Scot P. Floess
Just try ant -f ../my_dir/my_sub_dir/build.xml On Mon, 25 Aug 2008, David W wrote: Hello,   I know that "ant" can invoke "build.xml" file in the current directory. Is it possible to invoke the "build.xml" file in another directory? What I want is something like "ant ../my_dir/my_sub_dir/buil

Ant: invoke in a different directory?

2008-08-25 Thread David W
Hello,   I know that "ant" can invoke "build.xml" file in the current directory. Is it possible to invoke the "build.xml" file in another directory? What I want is something like "ant ../my_dir/my_sub_dir/build.xml"   How to do this?   Thanks so much,   David

Re: overwriting property specified in different files.

2008-07-09 Thread Tom Drynda
André Pilz <[EMAIL PROTECTED]> wrote: > ... > that is standard behaviour for ant. The first property definition wins. > A simple solution for this example is to load the second property file > first. > ... That's exactly how we do it. We have a default configuration held in a properties file.

Re: overwriting property specified in different files.

2008-07-09 Thread wizshah
this? >> > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/overwriting-property-spec

Re: overwriting property specified in different files.

2008-07-09 Thread André Pilz
Hello, that is standard behaviour for ant. The first property definition wins. A simple solution for this example is to load the second property file first. Also see the Task in ant-contrib, but I never needed it. Cheers, Andre wizshah schrieb: I have two following lines added to my build

overwriting property specified in different files.

2008-07-09 Thread wizshah
? -- View this message in context: http://www.nabble.com/overwriting-property-specified-in-different-files.-tp18358563p18358563.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: XSL, Ant and different input files

2008-03-15 Thread Robert Koberg
sage - > From: "Robert Koberg" <[EMAIL PROTECTED]> > To: "Ant Users List" > Sent: Saturday, March 15, 2008 9:53 AM > Subject: Re: XSL, Ant and different input files > > > > > > Hi, > > > > Have you looked at the relatively brief on

Re: XSL, Ant and different input files

2008-03-15 Thread Martin Gainty
Subject: Re: XSL, Ant and different input files > > Hi, > > Have you looked at the relatively brief one page of documentation for > the XSLT task in the Ant manual? > > You want to look for sending the target directory for your lookup files > into the transformation as params. Yo

Re: XSL, Ant and different input files

2008-03-15 Thread Robert Koberg
element (see the manual page). Then you would concat the target dir with the filename and use the document function to work on it. -Rob On Sat, 2008-03-15 at 07:30 -0700, Z W wrote: > Hi > I have 2 different xml data files with the same filename named zw.xml in 2 > separate directorie

XSL, Ant and different input files

2008-03-15 Thread Z W
Hi I have 2 different xml data files with the same filename named zw.xml in 2 separate directories. Each contains lines similar to these lines below In my xsl, I have I have 2 properties named d1, d2 in Ant where each point the directory containing zw.xml. How do I import or retrieve those

RE: Error message when using different settings

2008-03-06 Thread Jim Adams
Didn't we already get a jira issue from the original poster of the problem? > -Original Message- > From: Gilles Scokart [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 06, 2008 3:32 AM > To: [EMAIL PROTECTED] > Subject: Re: Error message when using different settin

RE: Error message when using different settings

2008-03-05 Thread Jim Adams
or message when using different settings > > On Wed, Mar 5, 2008 at 3:35 PM, Jim Adams <[EMAIL PROTECTED]> wrote: > > > > > Something else I have noticed is that if I resolve a module it finds the > > MD on one resolver then looks through all the resolvers again to find

AW: Antwort: How to execute a target multiple times, with different parameters

2008-03-03 Thread Jan.Materne
Jan > -Ursprüngliche Nachricht- > Von: leondz [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 3. März 2008 14:50 > An: user@ant.apache.org > Betreff: Re: Antwort: How to execute a target multiple times, > with different parameters > > > Hi, > >

Antwort: Re: Antwort: How to execute a target multiple times, with different parameters

2008-03-03 Thread Karl-Friedrich . Heintz
cs-all" and all called targets. Karl leondz <[EMAIL PROTECTED]> 03.03.2008 14:54 Bitte antworten an "Ant Users List" An user@ant.apache.org Kopie Thema Re: Antwort: How to execute a target multiple times, with different parameters Hi, This approach is wor

Re: Antwort: How to execute a target multiple times, with different parameters

2008-03-03 Thread leondz
e="output" value="QA2006_indri" /> Is this kind of structure achievable? Thanks again for all your help! All the best, Leon Karl-Friedrich.Heintz wrote: > > Hi, > > call your 'get-docs' from another target via and within this &

RE: How to execute a target multiple times, with different parameters

2008-02-29 Thread Alec Fernandez
;> To: Ant Users List >> Subject: Re: How to execute a target multiple times, with >> different parameters >> >> I would suggest to use a macro instead of a target. >> >> Gilles >> >> On 29/02/2008, leondz <[EMAIL PROTECTED]> wrote: >> >

Re: How to execute a target multiple times, with different parameters

2008-02-29 Thread Gilles Scokart
> > > > > &

Antwort: How to execute a target multiple times, with different parameters

2008-02-29 Thread Karl-Friedrich . Heintz
opie Thema How to execute a target multiple times, with different parameters Hi, I'm new to ant. I have a target in an existin

How to execute a target multiple times, with different parameters

2008-02-29 Thread leondz
want to run it a few times, using different values for the args. I don't mind doing this from within ant, or from a shell script, but I'm not sure how to automatically modify the arguments. What

Re: buildlist evicts modules with the same name, but different organisation

2008-02-10 Thread limbicsystem
, and thanks for your time, >> >> L >> >> http://www.nabble.com/file/p15390544/ivy-bug.tar.gz ivy-bug.tar.gz >> -- >> View this message in context: >> http://www.nabble.com/buildlist-evicts-modules-with-the-same-name%2C-but-different-organisation-tp15390544p153

Re: Running a target under a different working dir

2008-01-11 Thread Chuck Holzwarth
t; <[EMAIL PROTECTED]> To: user@ant.apache.org Sent: Thursday, January 10, 2008 4:17:43 PM Subject: Running a target under a different working dir Maybe this is a basic question, but I can't figure it out. I want to run the cargo task under a different working directory (so that my

Running a target under a different working dir

2008-01-10 Thread Hannum, Daniel
Maybe this is a basic question, but I can't figure it out. I want to run the cargo task under a different working directory (so that my container's relative paths work correctly). I understand you can't change basedir. I've tried to do an antcall passing a different based

Re: howto reuse includes and excludes definitions for different filesets

2007-12-10 Thread Ingo Siebert
Thank you Dmitri, it works great. Ingo Dmitri Farafonov schrieb: Couple ways: First use patternset http://ant.apache.org/manual/CoreTypes/patternset.html And reuse the pattern: Second create includes/excludes files: And use includesfile and excludesfile attributes http://an

Re: howto reuse includes and excludes definitions for different filesets

2007-12-07 Thread Dmitri Farafonov
Couple ways: First use patternset http://ant.apache.org/manual/CoreTypes/patternset.html And reuse the pattern: Second create includes/excludes files: And use includesfile and excludesfile attributes http://ant.apache.org/manual/CoreTypes/fileset.html Hope it helps, Dmitri.

AW: howto reuse includes and excludes definitions for different filesets

2007-12-07 Thread Jan.Materne
-Ursprüngliche Nachricht- > Von: Ingo Siebert [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 7. Dezember 2007 16:39 > An: user@ant.apache.org > Betreff: howto reuse includes and excludes definitions for > different filesets > > Hi, > > i have to create two files: src

howto reuse includes and excludes definitions for different filesets

2007-12-07 Thread Ingo Siebert
Hi, i have to create two files: src.zip and binary.jar . The src.zip contains the source code files and the binary.jar contains the class files. They only contains a _subset_ of my complete project. That's why i have to filesets. // ... // ... But i don't wa

RE: Passing properties as parameters to different targets in a build file

2007-12-03 Thread Agarkar, M (Milind)
: 02 December 2007 21:58 To: Ant Users List Subject: Passing properties as parameters to different targets in a build file Hi all, I have a project.properties file that define a set of properties for my build system. log.dir and build.dir are defined in project.properties. Based upon user&#

Passing properties as parameters to different targets in a build file

2007-12-02 Thread Shankar S
VS_Modules".* Secondly I tried passing the value using but no luck with that either. Is there a way to pass log.dir (and other properties) to different targets in the same build file. Thanks in advance; -Shankar

Re: [Ant task] Calling different targets by passing it to a batch file

2007-10-23 Thread Sunil Prabhakaran
2007 13:23 > >An: Ant Users List > >Betreff: [Ant task] Calling different targets by passing it to > >a batch file > > > >Hello, > > > >I have a batch file ABC.bat, which I use to set ant path and > >run the build > >file. > > > >ABC.bat co

AW: [Ant task] Calling different targets by passing it to a batch file

2007-10-22 Thread Jan.Materne
13:23 >An: Ant Users List >Betreff: [Ant task] Calling different targets by passing it to >a batch file > >Hello, > >I have a batch file ABC.bat, which I use to set ant path and >run the build >file. > >ABC.bat contents are somewhat like: >rem Set Ant path ove

[Ant task] Calling different targets by passing it to a batch file

2007-10-18 Thread Dharmesh Vyas
Hello, I have a batch file ABC.bat, which I use to set ant path and run the build file. ABC.bat contents are somewhat like: rem Set Ant path over here ant -verbose -buildfile "RunBuild.xml" %1 -emacs I have few targets for e.g A, B, C, D in my build file RunBuild.xml. These targets are my defaul

AW: use different jdk for build file

2007-06-19 Thread Jan.Materne
Ant needs a JDK for its own. So the best is pointing JAVA_HOME to the required JDK. Jan >-Ursprüngliche Nachricht- >Von: kkmca [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 18. Juni 2007 22:18 >An: user@ant.apache.org >Betreff: use different jdk for build file

use different jdk for build file

2007-06-18 Thread kkmca
i have an environment that i use to build applications and a new requirement has been developed for this environment to use two different jdks for building different versions of the code, the old branch uses jdk 1.5 and the new branch uses jdk 1.6 i found that it is easy enough to tell the

RE: Question about using different jvms with ant 1.6.5

2007-03-09 Thread Bret Kumler
51 AM To: Ant Users List; Bret Kumler Subject: Re: Question about using different jvms with ant 1.6.5 Good Morning Bret- 1)Can you specify the jvm attribute to point to your own customised java class? http://ant.apache.org/manual/OptionalTasks/junit.html 2)Also set clonevm to 'false' as y

Re: Question about using different jvms with ant 1.6.5

2007-03-09 Thread Martin Gainty
nous vous signalons qu'il est strictement interdit de le diffuser, de le distribuer ou de le reproduire. - Original Message - From: "Bret Kumler" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Friday, March 09, 2007 11:54 AM Subject: Question about using differ

Question about using different jvms with ant 1.6.5

2007-03-09 Thread Bret Kumler
Here's the issue. I want to use the latest version of Selenium to test our web application, which happens to run on jdk 1.4 in tomcat. The problem is the latest version of Selenium uses jdk 1.5 Is there a way to specify different jvms in the task or the task? Are there any samples I ca

RE: Help with running different target based on user input?

2007-02-23 Thread KDuffy
Kevin Duffy eScholar White Plains, NY 914-989-2983

RE: Help with running different target based on user input?

2007-02-23 Thread Priest, James (NIH/NIEHS) [C]
Actually playing around with using depend - I think I can just eliminate the user input entirely... :) Now that I look at it - it seems redundant when you can just determine what gets run by picking the appropriate target... Thanks again! Jim > -Original Message- > From: RADEMAKERS Tangu

RE: Help with running different target based on user input?

2007-02-23 Thread RADEMAKERS Tanguy
>Thanks for all the help!! Your name looks familiar - you are on the >CFEclipse mailing list as well aren't you? :) My pleasure, and, yes, i am indeed on the CFE list (usually posting things like "you can do that with ant!") /t ---

RE: Help with running different target based on user input?

2007-02-23 Thread RADEMAKERS Tanguy
Hey James, Just a last disclaimer/whatnot: it's worth mentioning that is not meant to be used as a poor man's "goto" - it's more about allowing you to reuse an existing target, optionally with different properties. Ant scripts can get pretty hairy even when you d

RE: Help with running different target based on user input?

2007-02-23 Thread Priest, James (NIH/NIEHS) [C]
y 23, 2007 11:34 AM > To: Ant Users List > Subject: RE: Help with running different target based on user input? > > Hey James, > > Just a last disclaimer/whatnot: it's worth mentioning that > is not meant to be used as a poor man's "goto" - > it'

RE: Help with running different target based on user input?

2007-02-23 Thread Priest, James (NIH/NIEHS) [C]
Okay - gotcha. For what I need now it's OK but I see where you are going... I'll copy my current code and rework it using 'depend' and see if I can make it work... I can see how that would be very flexible! Thanks! Jim > -Original Message- > From: RADEMAKERS Tanguy [mailto:[EMAIL PRO

RE: Help with running different target based on user input?

2007-02-23 Thread RADEMAKERS Tanguy
IH/NIEHS) [C] [mailto:[EMAIL PROTECTED] >Sent: Friday, February 23, 2007 4:15 PM >To: Ant Users List >Subject: RE: Help with running different target based on user input? > >> -Original Message- >> From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] > >> An

RE: Help with running different target based on user input?

2007-02-23 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] > Ant is not a scripting language... assuming that "run script > four" is a target in your build file, you could call it from > within another target using the task. You should > also look into the AntContrib thi

RE: Help with running different target based on user input?

2007-02-23 Thread RADEMAKERS Tanguy
i'm not too sure i understand what you mean by "chain dependencies together". In ant, a target can depend on more than one other targets (just pass a comma separated list) and ant handles generating the graph of dependent targets for you (so if target c depends on target b which depends on target a

RE: Help with running different target based on user input?

2007-02-23 Thread Priest, James (NIH/NIEHS) [C]
One last question :) Is there a way to chain the dependencies together? So I'll run Script 1 and 2... Then prompt for them to run Script 3... If they run Script 3 they should be prompted if they want to run script 4 - otherwise the build should just stop. Thanks, Jim -

RE: Help with running different target based on user input?

2007-02-23 Thread Priest, James \(NIH/NIEHS\) [C]
have a working example to compare. Thanks so much for the help! Jim > -Original Message- > From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] > Sent: Friday, February 23, 2007 8:41 AM > To: Ant Users List > Subject: RE: Help with running different target based on user

RE: Help with running different target based on user input?

2007-02-23 Thread RADEMAKERS Tanguy
rom: RADEMAKERS Tanguy >Sent: Friday, February 23, 2007 2:25 PM >To: 'Ant Users List' >Subject: RE: Help with running different target based on user input? > >Hello James, > >You should put the input tasks within the target blocks that >"consume" the inp

RE: Help with running different target based on user input?

2007-02-23 Thread RADEMAKERS Tanguy
Hello James, You should put the input tasks within the target blocks that "consume" the inputted info: mailto:[EMAIL PROTECTED] >Sent: Friday, February 23, 2007 2:13 PM >To: user@ant.apache.org >Subject: Help with running different target based on user

Help with running different target based on user input?

2007-02-23 Thread Priest, James \(NIH/NIEHS\) [C]
I'm just getting started using Ant (from within Eclipse) to help deploy my ColdFusion projects and Oracle sql scripts. I've had great success so far but I have finally ran into a problem I can't figure out. I'm trying to run some Oracle scripts - but would like to prompt the user while running th

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread m1ke
to use that. Again, I am not an Eclipse user so I don't have > any "words of wisdom" with respect to Eclipse. > -- View this message in context: http://www.nabble.com/Getting-Ant-to-compile-to-a-different-VM--tf2913012.html#

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread Scot P. Floess
It sounds like an environment issue... Regarding the class version error...I think you are correct - it is compiled to 1.3 however, for some reason, the 1.3 VM is attempting to use the 1.5 version of the Java classes. You may need to install a 1.3 version of the JDK and "tell" Eclipse to use

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread m1ke
- > Scot P. Floess > 27 Lake Royale > Louisburg, NC 27549 > > 252-478-8087 (Home) > 919-754-4592 (Work) > > Chief Architect JPlate http://sourceforge.net/projects/jplate > Chief Architect JavaPIM http://sourceforge.n

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread Scot P. Floess
OK I found your original email... It looks like you have a number of problems... When you get that exception (class version) what is it you are doing at that time? That doesn't look to me to be a compile time exception... Scot P. Floess wrote: I believe its simply: You may also have to

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread Scot P. Floess
I believe its simply: You may also have to specify using the attribute source="1.3" When you say "it's still having the problem" - can you refresh my memory - what is the problem exactly? I deleted my emails :( m1ke wrote: Hi ,thanks for the reply. Yeah there is a build.xml, previously t

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread m1ke
his message in context: http://www.nabble.com/Getting-Ant-to-compile-to-a-different-VM--tf2913012.html#a8140220 Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Getting Ant to compile to a different VM?

2007-01-03 Thread Scot P. Floess
If you need to compile targeted to JDK 1.3, you will need to set your ... I am not an Eclipse user so I can't help you there... I'm guessing an Ant build.xml is generated that you can edit? m1ke wrote: Hi. I am using Ant within Eclipse and need to compile to java 1.3. The problem is Eclipse

Getting Ant to compile to a different VM?

2007-01-03 Thread m1ke
hoping any Eclipse users can help or even if there is a general ant solution, as I'm not sure how to get to stop looking in the 1.5 directory and look in the 1.3.. thanks a lot -- View this message in context: http://www.nabble.com/Getting-Ant-to-compile-to-a-different-VM--tf2913012.html#a81

Antwort: Re: Calling Ant using different JDKs

2006-11-15 Thread Christian . Konrad
: Ant Users List Prashant Kopie: <[EMAIL PROTECTED] Thema: Re: Calling Ant using different JDKs

Re: Calling Ant using different JDKs

2006-11-13 Thread Prashant
[EMAIL PROTECTED] wrote: Hi everybody, is there a way to call an Ant Build-File () and pass it the JAVA_HOME environment variable? Exec accepts just that using the nested env-Argument (). Basically I'm looking for a way to call a Build-File (build.xml) with different JDKs. I cannot fi

Re: Calling Ant using different JDKs

2006-11-13 Thread Dominique Devienne
is there a way to call an Ant Build-File () and pass it the JAVA_HOME environment variable? Exec accepts just that using the nested env-Argument (). No. You can't even fork , much less change the JAVA_HOME. Basically I'm looking for a way to call a Build-File (build.xml) with diff

  1   2   >