Re: How to set content type in "get" task?

2016-03-19 Thread Chris Barlock
Is curl an option? You can run it with the Ant exec task. Chris From: Al Le To: Ant Users List Date: 03/17/2016 02:33 AM Subject:Re: How to set content type in "get" task? > No, the get task doesn't support setting the Accept-Header. > Probably pr

Re: Exec Task Problem on Linux

2015-04-14 Thread Chris Barlock
Earl, thank you again! Should have remembered that... This gets me closer, but protoc doesn't think I specified any input files. Perhaps this is now a question for the Google Protobuf forums! Chris From: Earl Hood To: Ant Users List Date: 04/14/2015 04:06 PM Subject:

Re: Exec Task Problem on Linux

2015-04-14 Thread Chris Barlock
Thank you, Earl. Was not aware of apply. That worked nicely! I would love to understand why exec does not work, though, when the executable is "/bin/sh" and the protoc command is the first arg. Chris From: Earl Hood To: Ant Users List Date: 04/14/2015 03:20 PM Subject:

Re: Exec Task Problem on Linux

2015-04-14 Thread Chris Barlock
of the command. [exec] /root/protoc/bin/protoc: /root/protoc/bin/protoc: cannot execute binary file [exec] Result: 126 Thoughts? Chris From: Steve Schlaifer To: Ant Users List Date: 04/14/2015 03:15 PM Subject:Re: Exec Task Problem on Linux

Exec Task Problem on Linux

2015-04-14 Thread Chris Barlock
"/bin/sh" and the protoc command was the first arg, which you can see commented out above. With this arrangement, the exec task failed saying "cannot execute binary file" for protoc. Where have I gone wrong here? Thanks! Chris

RE: Resource collections - Linux vs. windows

2014-02-12 Thread Kimpton, C (Chris)
pass *that* to the delete task. Keep us updated on your progress. Matt On Tue, Feb 11, 2014 at 9:30 AM, Kimpton, C (Chris) < chris.kimp...@rabobank.com> wrote: > Good idea. > > It initially worked ok, when the directories were empty, but when I > added files to each (touch

RE: Resource collections - Linux vs. windows

2014-02-11 Thread Kimpton, C (Chris)
es in any case" Pathconvert sounds promising - it gives me a property with the directories I want to delete in. Will play with that further tomorrow. Cheers, Chris -Original Message- From: Matt Benson [mailto:gudnabr...@gmail.com] Sent: 11 February 2014 15:43 To: Ant Users List S

RE: Resource collections - Linux vs. windows

2014-02-11 Thread Kimpton, C (Chris)
you expand your example into a self-contained example that builds up an appropriate structure first, then still fails on Linux? Matt On Tue, Feb 11, 2014 at 2:21 AM, Kimpton, C (Chris) < chris.kimp...@rabobank.com> wrote: > Hi, > > I have a target that is trying to delete some d

Resource collections - Linux vs. windows

2014-02-11 Thread Kimpton, C (Chris)
. I have tried running with debug and/or verbose but that does not seem to add anything. Using version 1.9.3. Any tips on how to track down the issue? Cheers, Chris

Re: Unexpected behavior

2013-12-02 Thread Chris Green
On Nov 27, 2013 1:09 PM, "Steele, Richard" wrote: > I've run into an odd behavior that I'm assuming is a defect but I'd like to > confirm. > > With this build file: > > > > > > > > > > > > > > > > > >

Re: Ant not noticing changes to file unless renamed

2012-04-16 Thread Chris Green
Hi John I think it may be your cache. Clear it down after rename because the original file is already there. Chris On 16 April 2012 20:03, Dunning, John (LNG-HBE) wrote: > I'm facing a rather strange problem with Ant - I have a task that uses > to copy an XSLT file managed unde

Re: How do I trace where a target was called from in a complicated build?

2012-03-19 Thread Chris Green
Hi David Can you provide the scipt and I'll have a look and see if I can spot it. chris On 19 March 2012 16:48, KARR, DAVID wrote: > I'm working with a complex build that calls the "clean" target at some > point. I need to figure out how/where that target is referen

RE: Passing multiple targets from one build.xml to another build.xml

2012-03-01 Thread Holman, Chris
This is how I'd approach the problem. (I haven't tried it, so there may be some bugs in there): Regards, Chris Holman, Chordiant/STAR Buil

RE: Passing multiple targets from one build.xml to another build.xml

2012-03-01 Thread Holman, Chris
rget attribute. Then invoke this using ant -Dproduct=abcd -DBUILD_TARGET=build_and_deploy Regards, Chris Holman -Original Message- From: Swayam Prakash Vemuri [mailto:vemuriswa...@gmail.com] Sent: 01 March 2012 12:14 To: user@ant.apache.org Subject: P

RE: Checking if a Target Exists

2011-11-03 Thread Holman, Chris
If I understand the problem correctly, you could use a condition: I've used this to check for a macrodef, not sure about targets? Regards, Chris Holman -Original Message- From: Vimil Saju [mailto:vimils...@yahoo.com] Sent: 03 November 2011 16:02 To: Steve Amerige; Ant

RE: How do I get a property treated as a value rather than a location?

2011-10-24 Thread Holman, Chris
You could use this: Regards, Chris Holman LinkedIn: http://uk.linkedin.com/in/chrisdholman -Original Message- From: twiddle-dee12 [mailto:harold.thurnst...@gmail.com] Sent: 24 October 2011 10:51 To: user@ant.apache.org Subject: How do I get a property treated as a value rather than a

RE: trouble fetching Ant dependencies -- getting HTTP 403 forbidden

2011-10-24 Thread Holman, Chris
You could install a copy of Nexus (a maven repository cache) and upload your own build of that jar to your Nexus (assuming you can still download the project source) Regards, Chris Holman -Original Message- From: Nicolas Lalevée [mailto:nicolas.lale...@hibnet.org] Sent: 21 October

RE: trouble fetching Ant dependencies -- getting HTTP 403 forbidden

2011-10-20 Thread Holman, Chris
If you browse the maven repository at that location, the pom file is there but the jar file is missing. Not sure if this would give a 403 error though. Regards, Chris Holman LinkedIn: http://uk.linkedin.com/in/chrisdholman -Original Message- From: Aleksey Tsalolikhin [mailto:atsaloli.t

RE: Problems using properties containing multiple dollar signs.

2011-08-17 Thread Holman, Chris
//backwards compatibility two $ map to one mode fragments.addElement("$"); // MY CHANGE: Don't jump over double dollars. // prev = pos + 2; prev = pos + 1; ... Regards, Chris Holman ---

Problems using properties containing multiple dollar signs.

2011-08-17 Thread Holman, Chris
elated to this PropertyExpander definition org.apache.tools.ant.PropertyHelper.SKIP_DOUBLE_DOLLAR Is there any way round this? OBJECTIVE: I'm trying to use an ant-contrib for loop to parse each line of a file. Some of these lines contain double dollars in the text, but param attribute is being munged by this PropertyExpander. Regards, Chri

Re: AW: Unsupported class version error

2010-10-03 Thread Chris Nicholls
I have exactly the same problem that Lis has described Ant: version 1.8.1 compiled on April 30 2010 JRE: java version "1.6.0_21" Jcraft jsch: jsch-0.1.43.jar The only fix for me was to downgrade to jsch-0.1.40.jar Did you find a solution @Lis? -Chris -- View this message in cont

Re: How can I exclude a directory's contents but not the directory itself?

2010-02-01 Thread chris . green100
I think your question includes the answer. It's the exclude parameter. Chris --Original Message-- From: Jonathan Gordon To: user@ant.apache.org ReplyTo: Ant Users List Subject: How can I exclude a directory's contents but not the directory itself? Sent: 1 Feb 2010 20:53

Re: how to install package to make ANT aware?

2009-11-24 Thread Chris Marks
I believe cobertura has a third level version. I think the latest version is 1.9.2. As a note, I have been starting to use the website http://www.jarvana.com to search for dependencies. It's pretty useful if you know the library you want and when you click on the information link, it will give y

Re: where to put credentials for ivy:publish

2009-11-04 Thread Chris Marks
Is Artifactory set up to allow anonymous publish? If so, perhaps it's not sending a challenge for Ivy to respond to. Thanks, topher On Wed, Nov 4, 2009 at 10:32 AM, nick.dila...@inovis.com < nick.dila...@inovis.com> wrote: > Thanks for the reply, but that didn't work. It doesn't seem to matter

Re: Java source files not part of any package

2009-10-27 Thread chris . green100
Look at the include / exclude parameter options Chris Sent using BlackBerry® from Orange -Original Message- From: Dianne Yumul Date: Tue, 27 Oct 2009 13:31:24 To: Subject: Java source files not part of any package Hello Everyone, I'm learning to use Ant 1.7.0 as part of Xcode

How to throw error if two files not equal?

2009-09-25 Thread Chris
I need to check to see if two files are the same, and throw an error and stop the build if they're not. Two problems: How to throw an error? How to compare two files? This is as far as I've gotten: ${isgood} This works, sort of, but it doesn't throw an error. Bizarrely, if neither file

Re: Does mail task work on Eclipse on Mac OSX 10.6?

2009-09-11 Thread Chris Kimball
's such a useful task, it's a shame it doesn't work. Thanks, Chris Kimball -- View this message in context: http://www.nabble.com/Does-mail-task-work-on-Eclipse-on-Mac-OSX-10.6--tp25383764p25405837.html Sent from the Ant - Users mai

Re: Does mail task work on Eclipse on Mac OSX 10.6?

2009-09-10 Thread Chris Kimball
64 bit stuff. Will be away until Monday. Thanks for all the detailed assistance! Chris Kimball -- View this message in context: http://www.nabble.com/Does-mail-task-work-on-Eclipse-on-Mac-OSX-10.6--tp25383764p25393635.html Sent from the Ant - Users mailing list a

RE: Does mail task work on Eclipse on Mac OSX 10.6?

2009-09-10 Thread Chris Kimball
on your machine? (At least without the "initialization error".) Thanks, Chris Rebhan, Gilbert wrote: > > > > -Original Message- > From: Rebhan, Gilbert > Sent: Thursday, September 10, 2009 5:06 PM > To: 'Ant Users List' > Subje

RE: Does mail task work on Eclipse on Mac OSX 10.6?

2009-09-10 Thread Chris Kimball
he Preferences menu item, with the same effect. I also tried eliminating the mailhost and mailport attributes and placing the from, tolist and message attributes within a single mail tag. All to no effect. The mailhost and mailport values are what my Thunderbird browser shows. Thanks for any

Does mail task work on Eclipse on Mac OSX 10.6?

2009-09-10 Thread Chris Kimball
in resource org/apache/tools/ant/antlib.xml ? Thanks, Chris Kimball -- View this message in context: http://www.nabble.com/Does-mail-task-work-on-Eclipse-on-Mac-OSX-10.6--tp25383764p25383764.html Sent from the Ant - Users mailing list archiv

Re: path env variable for fedora 10 and 11

2009-09-01 Thread chris chriss
path was not altered with "/foo" at the beginning. In fact my example does show "/foo" being appended to the path when I test it in fedora core 8 and 9 as well as Ubuntu and SuSE. Unfortunately something happened in Fedora Core 10 and 11. I appreciate any feedback. Thanks, C

RE: Yet another basic question about Ant

2009-09-01 Thread Chris Green
Send me your make file plus any extras. I'll have a look 4 you. chris.green...@gmail.com -Original Message- From: veena pandit Sent: 01 September 2009 19:59 To: Ant Users List Subject: Re: Yet another basic question about Ant It is for a Java program. But I have to convert all the Mak

Re: path env variable for fedora 10 and 11

2009-08-31 Thread chris chriss
> should > echo out the path with "/foo" at the begining. I don't believe it's a bug > with the version of ant, but how it's interacting with the FC10 and FC11 > environment. Not sure how to track this down. Any help is greatly > appreciated. > >

Mail task

2009-08-30 Thread Chris Kimball
ls.execute(DispatchUtils.java:116) but I can see LineInputStream.class in mail.jar. Why isn't ant seeing this class? Thanks, Chris -- View this message in context: http://www.nabble.com/Mail-task-tp25215393p25215393.html Sent from the Ant - Users mailing list archiv

path env variable for fedora 10 and 11

2009-08-23 Thread chris chriss
#x27;t believe it's a bug with the version of ant, but how it's interacting with the FC10 and FC11 environment. Not sure how to track this down. Any help is greatly appreciated. Chris env.PATH=${env.PATH}

Re: Need Suggestion in build.properties

2009-08-05 Thread Chris Green
ile in Solaris > > Machine but below script is not working > > > > > > > > Please suggest. > > > > Regards, > > Rajesh > > > > > > ____ > > http://www.mindtree.com/email/disclaimer.html > > > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

Re: Need Suggestion in build.properties

2009-08-05 Thread Chris Green
ase suggest. > > Regards, > Rajesh > > > > http://www.mindtree.com/email/disclaimer.html > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

Possible to perform a dependency subtraction?

2009-07-21 Thread Chris Nokes
y compatible and resolve conflicts. I would like to do the following in my target module: webPackaging->web,!runtime "webPackaging" represents the jars to be added to the WAR.  !runtime means do not add any jars from the runtime conf. Is there a way to do this with Ivy? Thanks, Chris Nokes

Re: Loganathan M is out of the office.

2009-07-07 Thread Chris Green
notify us by reply e-mail or telephone and > immediately and permanently delete the message > and any attachments. Thank you > > > > > - > To unsubscribe, e-mail: user-unsubscr...@ant.apache.org > For add

Re: Help with war task

2009-06-04 Thread Chris Green
-- > To unsubscribe, e-mail: user-unsubscr...@ant.apache.org > For additional commands, e-mail: user-h...@ant.apache.org > > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

Request: allow bzip streams to fail with exception

2009-03-31 Thread Chris Boertien
Im implementing a bzip command, and would prefer to have the option to have the bzip input/output streams fail with an exception instead of printing to System.err. Not only because this would give the ability to trap the exception, but the platform im developing for uses different facilities for st

svnant problems

2009-02-11 Thread Chris Green
Hi I'm trying to get svnant running and keep getting an error :- Could not load definitions from resource svntask.properties. It could not be found. All appropriate jar files have been placed in the ANT/Lib directory etc but I still get the error Can anyone help. Chris

Re: Ant : Very slow on Vista

2008-12-10 Thread Chris Green
t, and based on what I see there is no specific task that >>> take long time just a "cyclic" run / stop. My task do javac, copy files, >>> zip and unzip (many times for each) nothing really special.. >>> >>> >> Thanks for clarifying this. Perha

Re: Missing class for regex

2008-11-30 Thread Chris
Chris wrote: I'm trying to use the task from ant-contrib. It works fine when I call my ant build script directly, but when I call it indirectly within a Maven/Eclipse environment, I get this error message: build.xml:67: No supported regular expression matcher

Missing class for regex

2008-11-30 Thread Chris
I'm trying to use the task from ant-contrib. It works fine when I call my ant build script directly, but when I call it indirectly within a Maven/Eclipse environment, I get this error message: build.xml:67: No supported regular expression matcher found: java.lang.ClassNotFoundException: org.

Setting Ant classpath

2008-11-23 Thread Chris
Is it possible to set Ant's classpath from within the build.xml itself? Basically, I've got a directory full of libs that contain Ant tasks, and I'd rather not have to specify each one on the command line or in s. I'd rather just have a single line in my build.xml that says "put all the jars i

Building a using annotations

2008-10-21 Thread Chris
Is it possible in Ant to create a that consists of .java files that have some annotation? For example, if I create a custom annotation, like "@published", and attach it to several classes, is there some way to get a list of such classes in a fileset? ---

Can't get javadoc task to inherit comments

2008-10-20 Thread Chris
I'm having a hard time getting the javadoc for my classes to inherit comments from another project. I've got two Eclipse projects, and one has classes that implement interfaces defined in the other. I want all the comments from the interfaces to appear in the javadoc for the implementing class

Re: Problem :ant task "oracle:jaxwsGenImpl " on Jdev 11G Tech Preview 4

2008-07-29 Thread Chris Green
Does your classpath include reference to ant-oracle.jar? On 7/29/08, jyoti100 <[EMAIL PROTECTED]> wrote: > > Hi, > > I am running an ant task in Oracle JDeveloper 11g Tech Preview 4 > > the Task is as follows : > > > wsdl="contract/wsdl/${SRC_WSDL}" > /> > > > > The Output is : > > D:\Pras3\Web

Re: how to call a file in build.xml

2008-07-29 Thread Chris Green
Try the exec command. This allows you to call external command files. On 7/29/08, Kamran Hameed <[EMAIL PROTECTED]> wrote: > folks.. i am writting a java application that uses JNI. Now for generating c > files i am using Makefile. and for java files i am using ant[it is must that > i use Makefile]

Re: SCP in Ant

2008-07-01 Thread Chris Green
Thanks, that seems to have worked with the jsch.jar but I'm now getting an error message :- *com.jcraft.jsch.jschexception: java.net.UnknownHostException* The appropriate piece of code I am using is :- ** ** Any ideas ? Chris On Tue, Jul 1, 2008 at 6:37 PM, Matt Benson &l

SCP in Ant

2008-07-01 Thread Chris Green
I'm trying to SCP some files to a remote server and the message that I'm getting back implies I'm missing an external jar from my system to be able to use the SCP function. Anyone any idea which this may be ? Chris

Re: Depends="init" problem

2008-06-16 Thread Chris Green
I use something like :- and then have the four targets init, a, b and c doing whatever. Regards Chris On Mon, Jun 16, 2008 at 9:50 AM, Guy Catz <[EMAIL PROTECTED]> wrote: > I have several targets, all depends on init - > > > ... > > > ... > > > ... &

Re: JSCH Help

2008-06-13 Thread Chris Strzelczyk
ource, you will not have the scp task in your Ant binaries. > However if you compile jsch first, and then Ant, you should have the scp > tasks. > > I would suggest using the binary distribution of Ant and Jsch, unless > you have a specific reason not to. > > -Rob Anderson > &

JSCH Help

2008-06-12 Thread Chris Strzelczyk
tted as com/jcraft/jsch/jcraft/HMACSHA196.class is up to date. [jar] com/jcraft/jsch/jgss/GSSContextKrb5.class omitted as com/jcraft/jsch/jgss/GSSContextKrb5.class is up to date. BUILD SUCCESSFUL Total time: 0 seconds* -- Chris Strzelczyk GCS Real Estate Real Estate Investment and Management

Re: calling Ant from java

2008-06-08 Thread Chris Green
Just done a google on 'calling ant from java' and one of the results I got was someone else asking the same question. http://www.junlu.com/msg/17340.html Purhaps the resulting answers to his question may help you. Chris On Mon, Jun 9, 2008 at 8:43 AM, Sonal Bannore < [EMAIL PROT

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
gt; time. Therfore the properties > are set in the target or script that you call. The old values are lost if > you use the attribute > Inheritall=false > And using inside sets some properties to a value you > define. > > > > -- > Jürgen Knuplesch > -Ursprün

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
eneric component.xml Chris On Wed, May 28, 2008 at 10:49 AM, <[EMAIL PROTECTED]> wrote: > But in your original post you have specified the component in your batch > file. > > > > > Batch file contents are :- > > > > > > > > > > set

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
this in loops made with antcontrb. > > > > -- > Jürgen Knupleschwww.icongmbh.de > icon Systemhaus GmbHTel. +49 711 806098-275 > Sophienstraße 40 > D-70178 Stuttgart Fax. +49 711 806098-299 > > Geschäftsführer: Uwe Seltmann > HRB Stuttgart 176

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
;t want to hard code anything variables in 4. Once variable set, can't be changed. Honestly, there is some underlying logic behind all of this. Chris On Wed, May 28, 2008 at 9:41 AM, <[EMAIL PROTECTED]> wrote: > > I am calling a dos batch file from an An

Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
o get executed. Batch file contents are :- set component=common ant -f %build.dir%/component.xml Any help would be gratefully received. Chris

ant setup

2008-01-11 Thread Chris Calvin
b $ echo $JAVA_HOME /cygdrive/c/Program\ Files/Java/JavaEE\ 5\ SDK/jdk $ echo $ANT_HOME /cygdrive/C/Prorgram\ Files/Apache\ Software\ Foundation/Apache\ Ant\ 1.7.0/bin Can anyone please help? I'd like to get up and running and am, unfortunately, having diffi

RE: Unit Test

2007-10-26 Thread Cox, Chris
Amal, Do you know of anyone that might be qualified for the position I attached? Chris -Original Message- From: amalorpavadoss [mailto:[EMAIL PROTECTED] Sent: Friday, October 26, 2007 4:11 AM To: user@ant.apache.org Subject: Unit Test Hi, May I know, how NAnt performs unit testing

RE: cannot resolve symbol

2007-10-23 Thread Chris Styles
entries. Warm Regards, Sumit Srivastava Voice : (203) 719 - 5894 Email :[EMAIL PROTECTED] Chat :srivassb To go far, explore first what is near.. -Original Message- From: Chris Styles [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 23, 2007 2:18 PM To: user@ant.apache.org Subject

cannot resolve symbol

2007-10-23 Thread Chris Styles
\mib\MIB_2.X_FWD_DEV_AIX-WAS-DB2\EP_US_PSO_2.X\ build\build.xml:631: Compile failed; see the compiler error output for details. Thanks Chris

Addendum RELO available 4 Staff SCM position-Mt. View

2007-09-14 Thread Cox, Chris
Hey all forgive me for sending this out again, but I have confirmed we offer relo for the Staff SCM Engineer position here at Intuit in Mt. View. If you recommend any folks who might be interested I'd love to chat w/ them. Thanks again!! Chris Cox Candidate Generation Recruiter 41

RE: Expertise needed-SCM Engineer-Intuit-Mountain View

2007-09-11 Thread Cox, Chris
neighborhood. > -Original Message- > From: Martin Gainty [mailto:[EMAIL PROTECTED] > Sent: Monday, September 10, 2007 6:02 PM > To: Ant Users List > Subject: Re: Expertise needed-SCM Engineer-Intuit-Mountain View > > Chris- > > No relo? ..If I remember correctl

Expertise needed-SCM Engineer-Intuit-Mountain View

2007-09-10 Thread Cox, Chris
I wanted to check in with the experts to you if any of you might know of folks in your network I should reach out to for a Staff SCM Engineer. If you know of anyone the short list of requirements is at the bottom. Thanks in advance for your help :-) Chris Cox Candidate Generation Recruiter

Getting Ant property from Java class

2007-07-25 Thread Chris
How do I set a property equal to a value obtained from a Java class? For example, in our app we define the version in a constant: class MyClass { static public final String VERSION = "1.0"; } In build.xml, I'd like to assign a version property: and then use it to, say, name the .jar fil

ftp put x as y

2007-06-26 Thread Chris Velevitch
How to I ftp a file so that it gets a different name on the server? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Virtual Ant Beta Released - Mind bending new GUI for Ant !

2007-06-20 Thread Chris Velevitch
Since it's written in Java, when do you plan to do a Eclipse plugin? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: cvs behaviour

2007-06-20 Thread Chris Velevitch
I've worked it out. It seems the dest directory is where the cvs command is executed, then you can specify a directory relative to dest to export the module. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Unable to execute a command mysql with a < symbol

2007-06-14 Thread Chris Velevitch
This gave me a mysql unknown option "-c". Presently I am using tag to actually create the schema, this being JDBC indirectly takes a lot of time. I would like to reduce it. Any suggestions? -- Regards, Kannan Ekanath -- Chris Velevitch Manager - Sydney Flash P

Re: cvs export issue in ANT

2007-06-14 Thread Chris Velevitch
ort the new file, old file needs to be deleted first and then cvs export command is to be run. Is there any way to overwrite old file by checking timestamp as it does in task? -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 09

Re: cvs behaviour

2007-06-12 Thread Chris Velevitch
On 6/13/07, Anderson, Rob (Global Trade) <[EMAIL PROTECTED]> wrote: Please post the relavant portion of your build.xml file. The output from ant might be helpful also. Buildfile: /home/chris/projects/i07/system/build.xml test.properties: default: [cvs] Using cvs passfile: /home

cvs behaviour

2007-06-12 Thread Chris Velevitch
7; to the directory 'dest/module'. Is this a known problem or is there some attribute I need to add to make behave the same as at the commandline? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au

Re: task to 'cp -r --reply=no'

2007-06-12 Thread Chris Velevitch
. What's the ant equivalent of cp -r --reply=no? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

Re: task to 'cp -r --reply=no'

2007-06-12 Thread Chris Velevitch
not exist", but in my case I only want to copy files if "the destination file does not exist". Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au - To u

task to 'cp -r --reply=no'

2007-06-12 Thread Chris Velevitch
What task is the equivalent of 'cp -r --reply=no'. This command recursively copies files and if the file exists in the destination, skip copying that file and continue. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flash

Build/Release Engineer-ANT-San Diego and Mountain View

2007-05-15 Thread Cox, Chris
This is sent on behalf of a team member of mine here at Intuit. The position is located in San Diego. Intuit is also still looking to fill an opening in Mt. View w/ the same background. Intuit, maker of Quicken, Turbo Tax and QuickBooks, is looking for a software developer with a strong technical

Re: Silicon Valley-ANT Build Release Sr. Eng. (J2EE)

2007-05-03 Thread Cox, Chris
I know I know it is expensive but when you wake up in the morning here it makes it all that pain go away :-) Did I mention wages are usually higher in this area to compensate? Thanks for your help everyone. Chris -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent

Silicon Valley-ANT Build Release Sr. Eng. (J2EE)

2007-05-03 Thread Cox, Chris
. Chris Cox Can Gen Rec Intuit 415.681.3665 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Exec on Windows ignores return code?

2007-04-25 Thread Chris Dudley
rite a file as error marker and your buildfile could check that via . Jan >-Ursprüngliche Nachricht----- >Von: Chris Dudley [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 25. April 2007 09:36 >An: Ant Users List >Betreff: Re: Exec on Windows ignores return code? > >So how

Re: Exec on Windows ignores return code?

2007-04-25 Thread Chris Dudley
the shell! Jan >-Ursprüngliche Nachricht- >Von: Chris Dudley [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 24. April 2007 19:30 >An: user@ant.apache.org >Betreff: Exec on Windows ignores return code? > >Apologies if this is a FAQ or a known problem but I couldn't find &

Exec on Windows ignores return code?

2007-04-24 Thread Chris Dudley
Apologies if this is a FAQ or a known problem but I couldn't find anything useful in the archives, google or in bugzilla. I am having trouble with the exec task on Windows. It seems to me that regardless of what the executable returns, ANT always claims the return code on Windows is 0. The code

using ANT to run a java program that runs from the command line

2007-03-23 Thread Chris Johnson
I have been looking through the documentation on ANT and am a little confused about how to run a java program using ANT and have it be the same as if I'd run it from the command line. Another possible solution would be to run the program on the ant build of JUnit on the command line. Is t

Re: Selectively copying versions of files

2006-11-07 Thread Chris Gibble
larify my question? I should mention that my real application (not the one I made up for this e-mail) actually has something like 9 input files that vary on 4 different parameters, not including specific configuration requests. Chris --- On Tue 11/07, Matt Benson < [EMAIL PROTECTED] &g

Selectively copying versions of files

2006-11-07 Thread Chris Gibble
My apologies if this has been asked before, but I couldn't find anything related -- and it seems like it might be a fairly common scenario. Let's say I have a warehouse program that initializes itself by reading three configuration files: vehicles.xml personnel.xml locat

ANT called from .bat unknown Error

2006-10-26 Thread chris . mccauley
ndows XP Thank you, Chris ~ Christopher McCauley [EMAIL PROTECTED]

Re: Ant 1.7.0Beta3 released

2006-10-15 Thread Chris Chiasson
Thank you for working so hard on Ant. It is very useful to me. On 10/15/06, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: Hi, Ant 1.7.0Beta3 has just been released. This will be visible on our website in one hour at most. A number of bugs have been corrected since Ant 1.7.0Beta2. One importa

replace token property expansion

2006-09-18 Thread Chris Chiasson
How does one accomplish the effect of using where the token attribute could, in an alternate universe, do property expansion? Thank you, -- http://chris.chiasson.name/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: xclude

2006-09-18 Thread Chris Chiasson
I think I see what you mean now, I must specify some parameters to make it do the xinclude. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: xclude

2006-09-18 Thread Chris Chiasson
strange, i was using a very recent binary ant build on windows, which I think comes with a brand new version of xerces... o well :-[ On 9/18/06, Emmanouil Batsis <[EMAIL PROTECTED]> wrote: Chris Chiasson wrote: > xclude is a task for performing xincludes that is mentioned in

Re: xclude

2006-09-18 Thread Chris Chiasson
I forgot that I already tried this. The style task doesn't support sysproperties. Am I supposed to set these on the command line to ant or something? On 9/18/06, Chris Chiasson <[EMAIL PROTECTED]> wrote: xclude is a task for performing xincludes that is mentioned in the ant m

Re: xclude

2006-09-17 Thread Chris Chiasson
a few parts like that, such as xmlproperty vs import) On 9/17/06, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: Hello Chris, what is the task ? Which library does it come from ? from my past experience, xinclude probably requires that the ant task reading in a XML document sets p

xclude

2006-09-17 Thread Chris Chiasson
AFAIK, the proper namespace for xinclude is http://www.w3.org/2001/XInclude The xclude task is telling me that it should be 2003 in the url. It's also telling me that it won't process these year 2001 xincludes. My only guess is that this application hasn't been updated since the official namespa

xml-commons-resolver.jar or resolver.jar?

2006-09-07 Thread Chris Chiasson
Which resolver should I use for the xslt task, xml-commons-resolver.jar or resolver.jar? What is the difference? -- http://chris.chiasson.name/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

gentoo java.lang.ClassNotFoundException: org.apache.tools.ant.taskdefs.optional.TraXLiaison

2006-09-05 Thread Chris Chiasson
For anyone that encouters this error on gentoo with ant > 1.6, I believe I located [1] the solution: emerge -uDNav ant-tasks [1] http://forums.java.net/jive/thread.jspa?messageID=103089 Of course, now I have a new problem where xalan is telling me that it can't locate a template for . I guess t

Re: unique target names?

2006-09-04 Thread Chris Chiasson
;-Ursprüngliche Nachricht- >Von: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] Im Auftrag von Chris Chiasson >Gesendet: Dienstag, 5. September 2006 08:01 >An: user@ant.apache.org >Betreff: unique target names? > >Is it possible to have a target name be shared between two >ta

  1   2   >