Re: If anyone ever wanted to download a bunch of deps specified in a Maven POM for an Ant build

2017-06-11 Thread Paul Hammant
:copy-dependencies -f ~/.m2/repository/org/eclipse/jetty/jetty-servlets/9.4.5.v20170502/jetty-servlets-9.4.5.v20170502.pom -DoutputDirectory=$(pwd)/foo/ -DincludeScope=compile cp ~/.m2/repository/org/eclipse/jetty/jetty-servlet/9.4.5.v20170502/jetty-servlet-9.4.5.v20170502.jar foo/ - Paul On Sun, Jun 11, 20

If anyone ever wanted to download a bunch of deps specified in a Maven POM for an Ant build

2017-06-11 Thread Paul Hammant
If your 'current directory' is a Maven checkout, I have a Python script that will download the dependencies into a libs/ folder. Well, libs/compile/ libs/test/ etc - one subfolder per scope. See here: https://github.com/paul-hammant/spring-jetty-integrationtest-ant-example/blob/master/m

Re: Delete N directories that match a regexp

2010-05-11 Thread Bishu Paul
Hi Mike, Add value and else properties to condition and set values.. it will work. . . . -- View this message in context: http://old.nabble.com/D

pass parameters from one file to another

2009-09-25 Thread paul collins
I was supplied a script by Francis Galiegue see below which passes a parameter value from one property file to another one, which works for me see below, but I have comments in file B see below for example that I want to keep, but these are removed when I run this script. From reading the ANT manua

Re: Replace value of a parameter

2009-09-25 Thread paul collins
? ### # Edit this file before doing a release. # When finished changes, simply save and close to resume build process On Fri, Sep 25, 2009 at 10:35 AM, paul collins < paul.pcollins.coll...@gmail.com> wrote: > I have not tried this yet but how come property

Re: Replace value of a parameter

2009-09-25 Thread paul collins
I have not tried this yet but how come property file A is defined out side the target something should not be inside it? On Fri, Sep 25, 2009 at 10:13 AM, Francis GALIEGUE wrote: > On Fri, Sep 25, 2009 at 10:51, paul collins > wrote: > > I want to pass a parameter value from

Replace value of a parameter

2009-09-25 Thread paul collins
I want to pass a parameter value from one property file to another one, they both have the same name so for example I have file A with the parameter build=0999 and other file B with a number of paramters but the one I want to replace is build build=0998 So how do do I take the value of build in f

Re: Deleting .svn directories example doesn't work

2009-05-21 Thread Paul J. Lucas
n directories. There are built products in the set of files I'm copying. svn export does not copy files that are not under source control. - Paul - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: Deleting .svn directories example doesn't work

2009-05-20 Thread Paul J. Lucas
On May 20, 2009, at 2:34 PM, Paul J. Lucas wrote: I'm trying to use the "deleting subversion directories" example from the manual: and it does nothing. How can this be made to work? It turns out the ant manual is wrong. The inclu

Re: Deleting .svn directories example doesn't work

2009-05-20 Thread Paul J. Lucas
On May 20, 2009, at 5:43 PM, Martin Gainty wrote: you need to flip the read-only attrib off of .svn and flip the read- only attrib off the folder This is not relevant. - Paul - To unsubscribe, e-mail: user-unsubscr

Deleting .svn directories example doesn't work

2009-05-20 Thread Paul J. Lucas
I'm trying to use the "deleting subversion directories" example from the manual: and it does nothing. How can this be made to work? I'm using ant 1.7.0. - Paul - To

RE: Classpath Wildcards

2009-03-12 Thread Paul King
+1 for a bug report/enhancement requrest. I need this functionality too for a customer stuck on windows. In any case, this is core Java functionality, ant should support it simply for the simplifications it brings in some use cases. Cheers, Paul. Murray, Mike wrote: > > Yes, it happ

Re: Problems downloading the Spring Framework: Ivy 2.0.0

2009-02-04 Thread paul . newport
Try getting Spring from Spring: http://www.springsource.com/repository/app/library/version/detail?name=org.springframework.spring&version=2.5.6.A&searchType=librariesByName&searchQuery=spring The resolvers are: http://repository.springsource.com/ivy/bundles/release/[organisation]/[module]/

Re: IvyDE update sites

2009-01-21 Thread paul . newport
It's the one linked to on the main ivyDe site. http://ant.apache.org/ivy/ivyde/download.cgi Target www.targetgroup.net Target is a trading name of Target Group Limited, registered in England and Wales No. 1208137 Registered office: Target House, Cowbridge Road East, Cardiff CF11 9AU *

RE: how to put the artifacts in ant classpath?

2009-01-05 Thread paul . newport
I wouldn't use cachepath, as one would normally not have the ivy cache present on the deployment target. We use the ivy cache jars via IvyDE for compilation, but ivy retrieve for pulling jars into wars. Target www.targetgroup.net Target is a trading name of Target Group Limited, registe

Re: Sending html email but the html is not seen in my mail client

2008-12-17 Thread Paul Taylor
Rebhan, Gilbert wrote: try Ah schollboy error, thats it messagemimetype="text/html" thanks Paul - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Sending html email but the html is not seen in my mail client

2008-12-17 Thread Paul Taylor
in Thunderbird the message is empty, however if I look at the email within the internal Thunderbird folder it can be seen the html is part of the message (see below) , so what am I doing wrong thanks Paul From - Wed Dec 17 12:22:10 2008 X-Account-Key: account1 X-UIDL: 1060694494.143116 X-

Re: IvyDE retrieve problems

2008-12-10 Thread paul . newport
I cleared down everything, rebuilt from the trunk, re-installed and all OK. Perhaps I had some old features or plugins in Eclipse. All works now though, sorry about that. Target www.targetgroup.net Target is a trading name of Target Group Limited, registered in England and Wales No. 120

RE: Refactoring code in dependent projects

2008-12-10 Thread paul . newport
If you are using this feature, is there any way you can get an ivy managed dependency that is in the workspace to somehow automatically deploy its jar into a web project ? My scenario was Web project A depends on B B was a J2EE module dependency/web library and eclipse automatically compiles

RE: Refactoring code in dependent projects

2008-12-02 Thread paul . newport
"What I did to solve the problem is: Setting the Eclipse Project dependencies (as without ivy) B -> A. Now you have the 'problem' that the projects are added twice (Ivy Managed Dependencies and Eclipse Project dependencies), but on the project Build Path you can adjust the order so that the wo

Refactoring code in dependent projects

2008-12-02 Thread paul . newport
I have this scenario. Project A depends on Project B Before using Ivy I would have Project A and B in my Eclipse workspace, and A would have B as a project on the Build Path. This meant that if I refactored something in B (e.g. rename a service) it would update references to it in A. Now I a

Feedback wanted on Groovy Tutorial at ApacheCon US

2008-10-09 Thread Paul King
keep the noise down) if any of these topics interest you and by all means feel free to sign up for the tutorial if you are planning to attend. Thanks, Paul. E: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Feedback-wanted-on-Groovy-Tutorial-at-ApacheCon-US-tp1989828

RE: URL=.... Behaviour

2008-09-17 Thread paul . newport
"We have a standard resolver where 90% of our projects exist in the correct place. 10% of projects are in the same filesystem but not standardly placed. We cannot change the place they exist at. So anything unstandard is located via a url="file://." link for the artifact. We wish to use

Re: Ivy 2 resolve time over a WAN

2008-09-08 Thread paul . newport
"Did you use a different VM when running Ivy-1.4 and Ivy-2.0 ?" More than likely. I have now gone through this with a fine tooth comb and the problem is the same in Ivy 1 and 2. It is not so slow if you use httpClient but still awfully slow. The problem most likely revolves arounds this bug

Re: Ivy 2 resolve time over a WAN

2008-09-05 Thread paul . newport
Looks like I am running into this bug: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6469803 Target www.targetgroup.net Target is a trading name of Target Group Limited, registered in England and Wales No. 1208137 Registered office: Target House, Cowbridge Road East, Cardiff CF11 9

Re: Ivy 2 resolve time over a WAN

2008-09-05 Thread paul . newport
"You can track down Ivy http communications by using commons-httpclient" How do I do this ? I'm fine with setting up commons logging, but my little test case that does an install doesn't even have commons-httpclient on the classpath. "There were some issues with ivy not liking networks where

Re: Ivy 2 resolve time over a WAN

2008-09-05 Thread paul . newport
OK. I've tried the trunk version, both from my current location (WAN->LAN-FIREWALL->INTERNET) and from our other office (LAN->FIREWALL->INTERNET) It's fast on the LAN, but doing an install from the WAN took 27 minutes. Target www.targetgroup.net Target is a trading name of Target Group Li

Re: Ivy 2 resolve time over a WAN

2008-09-03 Thread paul . newport
Have you got a link to a pre-built trunk jar to download ? I can't check it out from svn due to firewall restrictions. Target www.targetgroup.net Target is a trading name of Target Group Limited, registered in England and Wales No. 1208137 Registered office: Target House, Cowbridge Road

Re: Renaming files during copy

2008-08-25 Thread Paul Schabl
Works great, many thanks! Paul Schabl Am 25.08.2008 um 23:51 schrieb David Weintraub: Well, you're already using one Selector, why not use the "type" selector too: If you need empty folders

Re: Renaming files during copy

2008-08-25 Thread Paul Schabl
Unluckily, all directories get renamed Thanks for your suggestion, Paul Schabl Am 25.08.2008 um 18:59 schrieb David Weintraub: You mention that the renamed directories are empty. Are all the directories renamed, or only the empty ones? If it is only the empty ones, can you add the

Renaming files during copy

2008-08-25 Thread Paul Schabl
uring copy? Thanks and Regards, Paul Schabl - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How do I call antcall once per line of file using line value as parameter?

2008-07-02 Thread Paul Taylor
I dont understand Ruby so this wouldnt be an option for me. It just seems that this is such a common problem that it shoulg go into ant proper Rebhan, Gilbert wrote: -Original Message- From: Paul Taylor [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2008 10:30 AM To: Ant

Re: How do I call antcall once per line of file using line value as parameter?

2008-07-02 Thread Paul Taylor
I did it using Ant-contrib as follows param="param1"/> thanks Paul (BTW why dont they merge things like foreach into the main ant project, its very useful) Paul Taylor wrote: Hi, sure simple enough, but cant work out to iterate through lines of file, i,e how do I impl

How do I call antcall once per line of file using line value as parameter?

2008-07-01 Thread Paul Taylor
Hi, sure simple enough, but cant work out to iterate through lines of file, i,e how do I implement the for loop in pseudo code below for line in file rof thanks Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: How do you sort and remove duplicates lines from a file ?

2008-07-01 Thread Paul Taylor
Matt Benson wrote: --- Paul Taylor <[EMAIL PROTECTED]> wrote: Wow Matt , that works nicely though not very intuitive I'm not suprised I couldnt find it. I dont suppose you know howe could I remove the duplicates lines now that it is sorted. My idea was that I compare the li

Re: How do you sort and remove duplicates lines from a file ?

2008-07-01 Thread Paul Taylor
cant work out how to do it in ant. (Thanks Jane but I need a pure ant solution) thanks Paul Matt Benson wrote: All: I just added the following example to the Ant manual in svn: -Matt --- "Scot P. Floess" <[EMAIL PROTECTED]>

How do you sort and remove duplicates lines from a file ?

2008-07-01 Thread Paul Taylor
Hi, is it possible to sort the lines of a file alphabetically, and remove duplicates files, these seem simple enough thing to do but I cant find anyway to do it. thanks paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Plea for a forum

2008-06-23 Thread paul . newport
I do agree with Patrick on this one. My main issue with mailing lists is that you get all the threads regardless (hence the spam comment) and that the user interfaces of the archive viewers is nowhere near as good as say the one used on the Spring forum. The question was asked by the develope

Re: Setting path to MSVC compiler with cctask

2008-05-29 Thread Paul Richards
I'm afraid I was only evaluating ant+cpptask (as well as other tools) in order to find the best tool for my project. Unfortunately ant+cpptask didn't win, and so I didn't spend any more time on it. 2008/5/29 <[EMAIL PROTECTED]>: > Hi Paul, > > I'm in the s

Re: Setting path to MSVC compiler with cctask

2008-04-23 Thread Paul Richards
2008/4/23 Steve Loughran <[EMAIL PROTECTED]>: > Paul Richards wrote: > > > Hi, > > I'm trying to use cpptasks-1.0b5 with Ant 1.7.0 on a C++ a project > > that must be built with MSVC in both 32-bit and 64-bit flavours. With > > MSVC this means we must buil

Setting path to MSVC compiler with cctask

2008-04-23 Thread Paul Richards
As my build.xml grows larger I'm sure this will cause pain when debugging. So my question is how to specify the path to cl.exe neatly? Can the path to cl.exe be specified manually to cctask? Does Ant support calling itself in a neater way

signjar with mapper

2008-03-12 Thread Paul Gifford
jar.html What I'd like to do is have the jar renamed after it's signed. Clearly I'm doing it wrong. Could someone please point out my error? Thank you, Paul

Set property to glob expansion?

2008-03-01 Thread Paul J. Lucas
7;ve also tried: But that doesn't work either. What's the way to make it work? - Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Filter on copy with directory contents -- solution

2008-02-21 Thread Paul J. Lucas
After a friend pointed me to , I managed to figure out a pure Ant solution: This assumes the file contains @CLASSPATH@ as the string to replace. - Paul

Re: Filter on copy with directory contents

2008-02-20 Thread Paul J. Lucas
hard- coded.) The solution, if one exists, would use , , , and somehow getting the contents of a directory into a string, say a property. Once in a string, a regex replacement can be done on it. - Paul - To unsubscribe, e-mail: [E

Filter on copy with directory contents

2008-02-20 Thread Paul J. Lucas
attern (in this case *.jar). Is there a way to do that? I've read the docs but the answer isn't all that obvious. Thanks. - Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Suppressing packages from javadoc

2008-01-09 Thread Paul J. Lucas
ble? If so, how, exactly? Thanks. - Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Some junit tasks fail if run in ant with forkmode="once"

2007-11-09 Thread Paul Taylor
es 1 min 50 secs, but without it takes 6 mins 20 seconds. Anybody have any ideas, thanks paul

Re: Extending org.apache.tools.ant.types.Path in Ant 1.7

2007-07-24 Thread Paul J. Morris
Thanks Matt, That change fixed the problem - I patched our 1.7 version of Ant with the new 1.7.1 Path version. regards, Paul Matt Benson wrote: > > Paul, I have added a bugzilla report for this: > > https://issues.apache.org/bugzilla/show_bug.cgi?id=42967 > > I have che

Extending org.apache.tools.ant.types.Path in Ant 1.7

2007-07-23 Thread Paul J. Morris
marked as final (public final synchronized Iterator iterator() ) , so that isn't possible. Or is there something I'm missing? thanks Paul -- View this message in context: http://www.nabble.com/Extending-org.apache.tools.ant.types.Path-in-Ant-1.7-tf4133831.html#a11756872 Sent from the

Re: flextasks anomalies

2007-06-13 Thread Paul Barnes-Hoggett
Hi Martin, it sounds like you need to get hold of the Flex SDK: http://www.adobe.com/products/flex/downloads/ Download this, and set FLEX_HOME to point to this folder and you should be good to go... Cheers PBH On 6/13/07 9:35 AM, "Martin Gainty" <[EMAIL PROTECTED]> wrote: > Good Morning Varu

[solved] Re: Running .app on Mac OSX

2007-06-12 Thread Paul Barnes-Hoggett
e thr other response, the only options for 'open' are -a to specify the app, and -e to open the file in textEdit Cheers all PBH On 6/12/07 12:29 PM, "RADEMAKERS Tanguy" <[EMAIL PROTECTED]> wrote: > Hello Paul, > > You should be able to get around this by

Running .app on Mac OSX

2007-06-12 Thread Paul Barnes-Hoggett
Hi all, I have an ant script that's been working on Win XP, and I'm trying to get it working on a Mac. Basically, I want to run an app (its a swf player) that writes contents out to a file, then closes. Ant waits till the process has finished, then reads the file. So, on Win XP, this works:

Jar/Zip Update

2007-04-04 Thread Paul Selibas
completely lost and frustrated so any information would be greatly appreciated. Paul Selibas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: fileset and filename under copy task

2007-02-22 Thread Jackson, Paul R
To all, Thanks for your help everyone. I did finally get the jar target to work the way I wanted it to, preserving the module name(top directory) in the jar files. Using... Thanks again, Paul -Original Message

Specifying a directory without losing the directory name

2007-02-19 Thread Jackson, Paul R
java classpath) I tried variations of this with no success... I tried a dirset too, it didn't work either. > Paul Jackson > > - To unsub

Re: default excludes in

2007-01-08 Thread paul . arzul
Quoting [EMAIL PROTECTED]: > hi, > > using a slightly modified version of the last example: > > > and without setting .setIncludes() or .setExcludes(), i'm picking up > .cvsignore > files. do default excludes not apply to .createDataType("

default excludes in

2007-01-04 Thread paul . arzul
hi, using a slightly modified version of the last example: and without setting .setIncludes() or .setExcludes(), i'm picking up .cvsignore files. do default excludes not apply to .createDataType("fileset")? btw, the double space in that ex

Re: AW: how to access/iterate id in

2007-01-04 Thread paul . arzul
Quoting Peter Reilly <[EMAIL PROTECTED]>: > On 1/4/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Quoting [EMAIL PROTECTED]: > > > > > project.getProperty("source.dirs"); > > > > source.dirs is an id, not a property. i assume the distinction is > important, > > since getProperty returns null

Re: AW: how to access/iterate id in

2007-01-04 Thread paul . arzul
Quoting [EMAIL PROTECTED]: > project.getProperty("source.dirs"); source.dirs is an id, not a property. i assume the distinction is important, since getProperty returns null (which is correct but unhelpful). - p - To unsubscri

how to access/iterate id in

2007-01-04 Thread paul . arzul
hi all, if someone could point me to relevant docs i would be grateful-- the ant api appears 404: i'm trying to access an ant id in javascript: but .getId is

Re: xmlvalidate: check for well-formedness *only*

2006-12-21 Thread paul . arzul
Quoting Jacob Kjome <[EMAIL PROTECTED]>: > > According to the Xerces features doc [1], set validation [2] and > nonvalidating.load-external-dtd [3] features to "false" to turn off > DTD/Schema validation/loading. I haven't tried this myself. so YMMV. thanks jacob. i thought i'd already tried

selecting empty directories

2006-12-20 Thread paul . arzul
hi all, how do you select empty directories/folders? (a directory which has no files or folders in it?) i don't want to exclude them, i want to list and warn about them (so is no help). i've tried dozens of options, faq, etc. and many convoluted attempts later, i'm left looking at what seems th

Re: xmlvalidate: check for well-formedness *only*

2006-12-19 Thread paul . arzul
Quoting [EMAIL PROTECTED]: > any progress or workaround on that (for ant stable 1.6.5)? i've got this working, but at a snail's pace... not surprising since the following is rather io intensive (as well as unidiomatic): you'll notice 2 optional

xmlvalidate: check for well-formedness *only*

2006-12-19 Thread paul . arzul
hi all, nicola mentioned about 3 years ago the same problem: any progress or workaround on that (for ant stable 1.6.5)? i'm backing up source and doing sanity checking to make sure the files aren't fubar, so i

RE: Script task not found

2006-04-24 Thread Paul Donaldson
(the same build scripts are run on machines with Ant 1.5.1 and on machines with Ant 1.6.1). Regards, Paul -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: 24 April 2006 16:26 To: Ant Users List Subject: Re: Script task not found Which version of ant are you usi

Script task not found

2006-04-24 Thread Paul Donaldson
version 1.6 R2 from www.mozilla.org/rhino/ bsf.jar 2.3.0 from jakart.apache.org/bsf/ Many thanks, Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Check if files exist in a folder before I tar

2006-02-28 Thread Paul Faulstich
o, he could just create a fileset based on that dir and check it. I haven't found such a task if there is one. Paul Faulstich -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 12:02 PM To: user@ant.apache.org Subject: AW: Chec

Re: AW: List of file names as arguments to a java task

2006-02-24 Thread Paul Pogonyshev
On 24 February 2006 15:08, ar wrote: > > Thanks for your answer. It's true I'm missing a little the Goggle reflex. > > Here's the complete solution to my problem. > > > > > > > > > > >

Re: conditional execution

2006-02-22 Thread Paul Pogonyshev
epeat the same procedure for a number of files and duplicating rules is error-prone. Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: one more problem

2006-02-20 Thread Paul Pogonyshev
\2" > casesensitive="false" /> Thank you, I forgot to read all the docs in Ant-Contrib ;) One more, less important question: if I use several targets that invoke the same macro and set a property in that macro for temporary use (like above),

one more problem

2006-02-20 Thread Paul Pogonyshev
; \ --check --statistics\ "$PO_FILE" fi done I'm having problems with variable calculation. RESOURCE_NAME in the script has the form of `org.foo.bar.L10n', how do I compute `org/foo/bar/L10n' out of it in Ant? Also, I'd like

Re: AW: AW: AW: AW: AW: how to exec with a set of files as multiple arguments?

2006-02-17 Thread Paul Pogonyshev
ocess http://ant.apache.org/manual/CoreTasks/apply.html parallel Run the command only once, appending all files as arguments. If false, command will be executed once for every file. maxparallel Limit the amount of parallelism by passing at most this many sourc

Re: conditional execution

2006-02-17 Thread Paul Pogonyshev
On 17 February 2006 17:55, Matt Benson wrote: > --- Paul Pogonyshev <[EMAIL PROTECTED]> > wrote: > > > On 17 February 2006 17:07, Burgess, Benjamin wrote: > > > Ant-contrib has an "if" task which you could use. > > > > > > http://ant-cont

Re: AW: AW: AW: AW: how to exec with a set of files as multiple arguments?

2006-02-17 Thread Paul Pogonyshev
On 17 February 2006 17:37, [EMAIL PROTECTED] wrote: > >No, with parallel="true" will also invoke the command > >once only. > > Really sure? Or is this invoked one _after_ the other? > > .java: > if (!parallel) {

Re: conditional execution

2006-02-17 Thread Paul Pogonyshev
ased on condition, > and use the if / unless attributes on the targets. The problem is that I'm creating a macro, I don't feel like repeating the logic for each of similar targets... OK, seems like I'll need to use some extension... Paul -

Re: AW: AW: AW: how to exec with a set of files as multiple arguments?

2006-02-17 Thread Paul Pogonyshev
On 17 February 2006 17:17, [EMAIL PROTECTED] wrote: > > >BTW, I discovered that does > >exactly what I want... :) > > > ok, difference is that will invoke the executable for each > argument while > does this only once. No, with parallel="true" will

conditional execution

2006-02-17 Thread Paul Pogonyshev
Hi, Is it possible to do some sorts of conditional execution of tasks other than and scripts (require extensions)? I need things like if file exists, do this, else do that. Or, if files are equal (byte-wise), do something. Paul

Re: AW: AW: how to exec with a set of files as multiple arguments?

2006-02-17 Thread Paul Pogonyshev
nt > > will try to split the command line in a way similar to what a (Unix) > shell would do, but may create something that is very different from > what you expect under some circumstances." > > But it does not say that this is deprecated. Ye

absolute paths vs. relative paths

2006-02-17 Thread Paul Pogonyshev
Hi, I have one more question. How can I get relative paths instead of absolute ones? For instance, say I need to save the paths into a file. If I use absolute paths, it will be meaningless for someone on a different machine or with different home directory... Paul

Re: AW: how to exec with a set of files as multiple arguments?

2006-02-17 Thread Paul Pogonyshev
On 17 February 2006 15:08, [EMAIL PROTECTED] wrote: > > > > > Thanks, that works OK. is kind of deprecated, but I assume there is no other way. Thanks again. Paul - To unsubscribe, e-mail: [EMAIL

how to exec with a set of files as multiple arguments?

2006-02-17 Thread Paul Pogonyshev
w how to convert the fileset into a set of s. gives the files combined together in one argument... Paul - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: junit printsummary and showoutput

2006-02-13 Thread Paul Barry
ut. On 2/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Does a formatter produce that output? > > Jan > > >-Ursprüngliche Nachricht- > >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im > >Auftrag von Paul Barry > >Gesendet: Samstag,

junit printsummary and showoutput

2006-02-10 Thread Paul Barry
I have a junit task with printsummary="off" and showoutput="false", yet I still get the output and summary. What values should I use to supress the output of the unit tests?

RE: Ant Property Names

2006-02-08 Thread Paul Duncan
Stefan Thanks for the reply; that answers my question perfectly. Paul -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 4:54 AM To: user@ant.apache.org Subject: Re: Ant Property Names On Tue, 7 Feb 2006, Paul Duncan <[EMAIL PROTEC

Ant Property Names

2006-02-07 Thread Paul Duncan
1.6.2. Thanks in advance for your help. Paul Duncan --- This message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and

RE: New user

2005-12-19 Thread Hooper, Paul
I know this but it doesn't help with the problem : How to capture stdout and stderr from junit How to use dir and file names with spaces Thanks Paul -Original Message- From: Petar Tahchiev [mailto:[EMAIL PROTECTED] Sent: 19 December 2005 09:32 To: Ant Users

New user

2005-12-19 Thread Hooper, Paul
to be correctly interpreted with spaces in ? Thanks Paul _Confidentiality notice: Whilst this company has procedures in place and makes every effort to safeguard both Inbound and Outbound Emails, we cannot guarantee that attachments are Virus - Free or compatible with your systems and therefore w

Problem with Locale and SQL task

2005-12-08 Thread Paul Keeble
o go through and replace these characters with \u etc? Paul ___ Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail

RE: Copying specific files with full path specified

2005-11-21 Thread Paul Faulstich
This puts an extra comma at the beginning, but that seems to be okay. -Original Message----- From: Paul Faulstich [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 4:25 PM To: Ant Users List Cc: Eric Wood Subject: Copying specific files with full path specified I am trying to c

Copying specific files with full path specified

2005-11-21 Thread Paul Faulstich
illy discuss modifying to accept filelists (Subject: "Copy" accepts FileList without any directory limitation - enhancement?) -- Paul Faulstich Systems Analyst L.L. Bean, Inc. Freeport, ME 04033 (207) 552-2294 [EMAIL PROTECTED] www.llbean.com -

ant can't find javac compiler

2005-09-22 Thread paul
Thanks Martin - that did it. I should have remembered the golden rule of reading documentation 5 times before asking questions. Anyhow, now that my sanity has returned I shall get on with my life. Paul Martin Gainty writes: Good Afternoon Paul The documentation for the ant javac task

ant can't find javac compiler

2005-09-22 Thread paul
which javac" in my shell returns /usr/java/jdk1.5.0_02/bin/javac. How can I get ant to find javac? Any help with this would be greatly appreciated! Paul -- Paul Mackinlay (PhD, MEng) http://www.webotech.co.uk/ [EMAIL PROTECTED] Tel: +44(0)7050 699971 Fa

Re: Conditional tasks

2005-08-16 Thread Paul Lynch
You can do something like: (or maybe some other condition) ... ... The "if" means the target will only run if foundErrors was set to true. --Paul -Original Message----- From: Paul Munsey (pmunsey) <[EMAIL PROTECTED]> To: 'Ant Users List' Sent:

Conditional tasks

2005-08-16 Thread Paul Munsey \(pmunsey\)
build log, but depending on the results I may or may not want to send email. Paul Munsey [EMAIL PROTECTED]

need help adding a command to the compile task

2005-07-17 Thread Paul Goepfert
I have been writing a java program with apache ant. When I complie I get a warning that say to recompile with -Xlint:unchecked for details. How do I do that in ant? -Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Must-see for all ant beginners

2005-07-13 Thread Paul Munsey \(pmunsey\)
Karunakar, I'm using Ant against .dsw files using the tag and the "msdev" executable. For example: This will build all projects for the Release configuration (I think :)) Paul -Original Message- From: Karunakar Chatla [mailto:[

ant task and Ant options

2005-07-11 Thread Paul Munsey \(pmunsey\)
wn into the secondary ant call (task) even if I use the ANT_ARGS environment setting. Paul Munsey - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

java-doc question

2005-07-05 Thread Paul Goepfert
d be appreciated. -Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Need help creating a WAR task

2005-06-28 Thread Paul Goepfert
Hi all, I am creating a WAR task in my build.xml file. How do I move two configuration xml files that are not my web.xml file to my war file? I would like to have these files in a dir called conf within the WEB-INF file. -Paul

  1   2   >