Re: Using Ant Tasks programmatically - SignJar Tasl

2008-11-05 Thread Morgan Kinne
try sj.perform() From: "Daniele Development-ML" <[EMAIL PROTECTED]> To: "Ant Users List" Date: 11/05/2008 12:17 PM Subject: Using Ant Tasks programmatically - SignJar Tasl Hello everybody: I am trying to use Ant Task programmatically by invoking the API within my Java code. I get an excepti

Re: How to pass a file to an Ant build.xml process from command line?

2008-10-31 Thread Morgan Kinne
First on the command line try: ant -help This will show you the command line options. You will notice: ant -buildfile myfavoritebuildfile.xml is the option you are looking for. Morgan From: "Ben Stover" <[EMAIL PROTECTED]> To: "Ant Users List" Date: 10/31/2008 02:55 PM Subject: How to pass a

Re: How to pass a file to an Ant build.xml process from command line?

2008-10-31 Thread Morgan Kinne
Oops. Never mind.. I missed the eclipse part of your question. Morgan From: Morgan Kinne/Raleigh/IBM To: "Ant Users List" Date: 10/31/2008 03:43 PM Subject: Re: How to pass a file to an Ant build.xml process from command line? First on the command line try: ant -help This will sh

Re: java.security.PrivilegedActionException in Jython scriptdef

2008-10-28 Thread Morgan Kinne
Thanks Steve. You were correct of course. I was evidently trying to delete files in a directory that didn't exist! Who would have thought that would result in a security related exception. Bad on me for jumping to the conclusion I jumped to. All is working properly now.

java.security.PrivilegedActionException in Jython scriptdef

2008-10-27 Thread Morgan Kinne
Hi, I'm a newbie here and a newbie to Jython and scripting in Ant. In that vein: I've created a scriptdef task which I wrote in Jython. I'm using BSF as the manager. My intent was to delete files within this task. Everything works right up to the point where a file is to be deleted, when I get