deleting files not in whitelist

2018-07-17 Thread Jason Guild
h are /not listed in/ "my-whitelist", like this:             But this doesn't work. I also tried:                                             Which doesn't work either. Any help you can provide would

mail task results in authentication failure when using gmail as smtp server

2015-02-22 Thread jason mazzotta
e.com/mail/bin/answer.py?answer=78754 n34sm1388141qge.27 - gsmtp Do I need to loosen the security settings on my gmail account or are there other properties I need to set in the mail task to prevent the authentication error? Thanks, Jason Mazzotta

conditional flatten mapping

2015-02-05 Thread Jason Ricles
I have the following flatten mapping in my ant file. However for a couple of the paths in the deplibs variable I want to make these full instead of relative paths. Is there anyway to do a conditional in the pathconvet in ant to say make these flat but do not flatten

Deleting the destfile of a jar/war task

2013-08-15 Thread Jason Bastek
#x27;s possible to extend the jar task like this -- the extension docs I've read seem to only talk about creating new tasks, not extending existing tasks like jar/war. Any thoughts would be appreciated. Thanks! -Jason - To u

Copy issue ant 1.8.2 windows (Failed copy deletes targeted file even when copy is not attempted)

2012-04-11 Thread Jason Weinstein
NOTE: I attempted subscription to ant user mailing list but have not yet received a subscribe email ack, so PLEASE include jason.weinst...@oracle.com in responses. Thanks Copy issue ant 1.8.2 windows (Failed copy deletes targeted file even when copy is not attempted) copy uses overwrite

Re: Adding parallel JUnit task

2009-07-01 Thread Jason Rutherglen
sounds great as well. On Wed, Jul 1, 2009 at 9:25 AM, Steve Loughran wrote: > Jason Rutherglen wrote: > >> Hello, please excuse the newbie question. >> For the Apache Lucene project I'd like to paralleize the unit tests by >> subclassing JUnitTask into ParallelJUnitTa

Adding parallel JUnit task

2009-06-29 Thread Jason Rutherglen
Hello, please excuse the newbie question. For the Apache Lucene project I'd like to paralleize the unit tests by subclassing JUnitTask into ParallelJUnitTask which executes JUnitTests in threads. I don't understand how to place things like into the new task tag properly. Here's what I've tried

Re: Ant on Mac OS X (Solved)

2007-06-26 Thread Jason Barker
like Ant can be run from the command line without having to set ANT_HOME and JAVA_HOME. Thanks! On Jun 26, 2007, at 3:42 PM, Jason Barker wrote: On Jun 26, 2007, at 3:34 PM, Jack J. Woehr wrote: On Jun 26, 2007, at 3:18 PM, Jason Barker wrote: I have cleared out my CLASSPATH. A

Re: Ant on Mac OS X

2007-06-26 Thread Jason Barker
On Jun 26, 2007, at 3:34 PM, Jack J. Woehr wrote: On Jun 26, 2007, at 3:18 PM, Jason Barker wrote: I have cleared out my CLASSPATH. Ant is currently installed at: / Developer/Java/Ant. I have set ANT_HOME to /Developer/Java/Ant. I have added $ANT_HOME/bin to my PATH, too. What gives? You

Ant on Mac OS X

2007-06-26 Thread Jason Barker
have tried running 'ant -version' but I still get the same error. Can someone clue me in on what I am doing wrong? Thanks, Jason - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Retrieve Command Line

2007-02-15 Thread jason heddings
Hello all- Is it possible using ant built-in tasks or a custom java task to retrieve the entire command line that was used to call ant? --jah

RE: Switching to 'root' user

2007-02-14 Thread jason heddings
that need to run as root. I would suggest configuring sudo to only allow execution of those specific commands (with NOPASSWD), and in your build.xml file use the exec task to run sudo. -Rob Anderson > -Original Message- > From: jason heddings [mailto:[EMAIL PROTECTED] > Sent: We

Switching to 'root' user

2007-02-14 Thread jason heddings
Is it possible to run 'ant' as a regular user, but in the build file change the process to run as 'root' instead? I could just prefix the ant command with 'sudo' but I'd like to try to accomplish this "behind the scenes" of our developers. Thanks, --jah ---

"copy" Being Ignored

2007-01-28 Thread Jason Ferguson
cript). Script is below. The "bad" copy directive is the last one in the build target before the dir

RE: DirSet Top-Level Dirs Only

2006-09-08 Thread jason heddings
Message- From: jason heddings [mailto:[EMAIL PROTECTED] Sent: Friday, September 08, 2006 12:53 PM To: 'Ant Users List' Subject: DirSet Top-Level Dirs Only I'm trying to craft a dirset that contains only the topl-evel directories of the supplied path... I took this approach:

DirSet Top-Level Dirs Only

2006-09-08 Thread jason heddings
I'm trying to craft a dirset that contains only the topl-evel directories of the supplied path... I took this approach: But that doesn't seem to quite work. Effectively, I want to have all the first-level children of the ${basedir} directory only. Ideally, not even ${basedir} would be r

Re: UNSUBSCRIBE ME PLEASE

2006-06-11 Thread jason suplizio
Yes, about 6 times now. From: Keith Hall <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: Ant Users List Subject: Re: UNSUBSCRIBE ME PLEASE Date: Fri, 09 Jun 2006 16:21:01 +0100 jason suplizio wrote: have you tried To remove your address from the list, send a messa

UNSUBSCRIBE ME PLEASE

2006-06-08 Thread jason suplizio
I've unsubscribed to this list a dozen time. SOMEONE PLEASE get me off of this. From: "Anderson, Rob (Global Trade)" <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: "Ant Users List" Subject: RE: ANT's Scp fails without a passphase Date: Thu, 8 Jun 2006 10:51:25 -0700 You cannot specify a r

RE: calling maven2 files from ant

2006-06-07 Thread jason suplizio
I'm not on this list. I've unsubscribed 3 times already in the past 2 weeks. Anyone have a clue wtf is up? From: "EJ Ciramella" <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: "Ant Users List" Subject: RE: calling maven2 files from ant Date: Tue, 6 Jun 2006 09:59:02 -0400 I've used the sc

RE: compiler References in task

2006-05-15 Thread jason heddings
That did it, thanks! I ended up using the antlib.xml to get the definitions in the same import... Thanks, --jah -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Monday, 15 May, 2006 03:49 To: Ant Users List Subject: Re: compiler References in task jason

compiler References in task

2006-05-14 Thread jason heddings
Hello- I have the following build file and I'm not sure what I'm missing: When I try to run this, I get an error saying: build.xml:12: my-compiler doesn't denote a ProcessorDef This is my first attempt to factor out the compiler types, so thank

compiler References in task

2006-05-12 Thread jason heddings
Hello- I have the following build file and I'm not sure what I'm missing: When I try to run this, I get an error saying: build.xml:12: my-compiler doesn't denote a ProcessorDef This is my first attempt to factor out the compiler types, so thank

RE: Import Task

2006-05-09 Thread jason heddings
I had missed that point in the manual... Thanks! -Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED] Sent: Tuesday, 09 May, 2006 11:22 To: Ant Users List Subject: Re: Import Task > I'm using Ant version 1.6.5 and I'm trying to use the import task. The > manual shows

Import Task

2006-05-09 Thread jason heddings
Hello- I'm using Ant version 1.6.5 and I'm trying to use the import task. The manual shows that in the imported file, ant.file.imported should be set, however I'm not seeing this property. http://ant.apache.org/manual/CoreTasks/import.html I wrote the attached little task to display the properti

RE: Refid Not Being Recognized

2006-05-02 Thread jason heddings
> So you factor compilers/linkers rather than definesets. --DD Is there more information on this or using a refid for the defineset? For the way our build environment is set up, the easiest solution would be the refid for a defineset. I've been looking into the compiler option, but I'm not havin

Refid Not Being Recognized

2006-04-25 Thread jason heddings
Hello- I have looked around at the ant-contrib documentation, and I'm wondering if this is a problem with Ant itself. I'm trying to use a refid to reference a within my task (shown below). When I run this build, I get the following error: build.xml:13: std.defs doesn't denote a DefineSet I'v

RE: Auto task need to take backup before deployemnt

2006-01-17 Thread Carroll, Jason \(US SSA\)
Karthik - You don't need to be an expert. Just properly phrase your questions prior to asking. Judging from the way the question was asked it would probably be to you benefit to read the website that Jeff mentioned. -Jason -Original Message- From: Karthik [mailto:[EMAIL PROT

password input task

2005-11-08 Thread Jason Novotny
Hi, I'd like to use the input task to ask a user to enter a password, but I don't want the password to be displayed on the screen-- is there a way to do this? Thanks, Jason - To unsubscribe, e-mail: [EMAIL

RE: Problem with Environment Variables on Win2000

2005-09-28 Thread Jason
at this time it was finally reproducable but no dice. Oh well, it remains a mystery. Thanks again. -jason --- "Dick, Brian E." <[EMAIL PROTECTED]> wrote: > It works on XP. > > --- rant.bat > > setlocal > set foo=bar > call ant > echo on > Endloca

Problem with Environment Variables on Win2000

2005-09-27 Thread Jason
able to access 'standard' environment variables (eg, Path) but the ones I set explicity in the bat file which launches ant aren't recongised. Should this work? Is there some work around? If anyone could set me straight, I'd appreciate it. -jason

how to copy only if dest file does not exist

2005-09-08 Thread Jason Novotny
s the dest file is present. Thanks, Jason - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

task seems broken

2005-05-03 Thread Jason Novotny
ina.valves.FastCommonAccessLogValve" [available] Unable to load class org.apache.catalina.valves.FastCommonAccessLogValve >>>>>> How can I tell it to not try to do any autoresolving of dependencies behind my back? I only want it to indicate if a

an ant task that does logging

2004-12-03 Thread Jason Novotny
in the classpath, but that didn't work either any other ideas are greatly appreciated! Thanks, Jason - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

how to conditionally include jars in path

2003-03-24 Thread Jason Novotny
Hi, I have a path like the following: and I want to add in there some logic like this: if ${env.BOB_HOME} exists do the stuff below Thanks, Jason - To unsubscribe, e