Re: JUnit optional task

2001-12-10 Thread Jill Stephenson
Add JUNIT_HOME/junit.jar to your classpath before invoking ant. -- Jill - Original Message - From: "Bryan P. Glennon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 11, 2001 8:18 AM Subject: JUnit optional task When I try to use the Junit task (with ant 1.4.1, Jun

Re: Setting classpath for Taskdef

2001-12-09 Thread Jill Stephenson
rs List'" <[EMAIL PROTECTED]> > > Sent: Monday, December 10, 2001 2:27 PM > > Subject: RE: Setting classpath for Taskdef > > > > > > > The task and the taskdef both have the exact same case 'mimeMail'. > > > > > > > -Original Message- >

Re: Setting classpath for Taskdef

2001-12-09 Thread Jill Stephenson
he taskdef both have the exact same case 'mimeMail'. > > > -Original Message- > > From: Jill Stephenson [mailto:[EMAIL PROTECTED]] > > Sent: Monday, 10 December 2001 14:52 > > To: Ant Users List > > Subject: Re: Setting classpath for Taskdef > > >

Re: Setting classpath for Taskdef

2001-12-09 Thread Jill Stephenson
Try changing the name of the taskdef to be all lowercase, it seems like the case of the task definition and actual usage of the task must match ... -- Jill - Original Message - From: "William Ferguson" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Monday, Decembe

Re: Setting classpath for Taskdef

2001-12-09 Thread Jill Stephenson
As per the optional task doco for MimeMail "JavaMail and Java Activation Framework are required for this task." So if you don't want to put j2ee.jar in your classpath you must at least download the apis and put them in your classpath. -- Jill - Original Message - From: "William Ferguson

Re: Setting envrionment variables from within build.xml

2001-12-06 Thread Jill Stephenson
How about looking at the problem another way and extracting out the common code into a subtarget to which you can pass a parameter using the antcall task. Something along the lines of the following ... -- Jill - Original Message - From: "R

Re: Quoting issue

2001-12-05 Thread Jill Stephenson
The value passed to signtool probably needs to be enclosed in quotes, try -- Jill - Original Message - From: "Ed Mangual" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 06, 2001 7:47 AM Subject: Quoting issue > How do you escape apostrophes? I having a small issu

Re: Build Fails on HP-UX

2001-12-05 Thread Jill Stephenson
[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Thursday, December 06, 2001 8:14 AM Subject: RE: Build Fails on HP-UX > > -Original Message- > > From: Jill Stephenson [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, December

Re: Build Fails on HP-UX

2001-12-05 Thread Jill Stephenson
You must be using optional ant tasks, so you need to put the ant optional jar (downloadable seperately from jakarta) into ANT_HOME/lib. -- Jill - Original Message - From: "Brenneis, Steve" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Thursday, December 06, 2001 4:

Re: Ant Task

2001-12-02 Thread Jill Stephenson
Use the optional wlrun task, eg., where the properties are defined as appropriate to your environment. -- Jill - Original Message - From: "Melroy Rodrigues" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 03, 2001 4:30 AM Subject: Ant Ta

Re: Starting JBoss from a build file

2001-11-29 Thread Jill Stephenson
Oops, found the problem. A typo in the class name of one of the jvmargs !! -- Jill - Original Message - From: "Jill Stephenson" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 4:46 PM Subject: Starting

Starting JBoss from a build file

2001-11-28 Thread Jill Stephenson
I am trying to startup JBoss from within a target for running tests. I (think!) that I have all the relevant pieces as taken from the JBoss scripts run_with_tomcat.bat and run.bat. The following is the relevant snippet from my build file, where jboss.home is a property set to my jboss installatio