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

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 JBoss from a build file I am trying

Re: Ant Task

2001-12-02 Thread Jill Stephenson
Use the optional wlrun task, eg., !-- start web logic -- wlrun beahome=${bea.home} home=${weblogic.home} domain=${weblogic.domain} password=${weblogic.password} classpath refid=weblogic.classpath / /wlrun where the properties are

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:26 AM

Re: Build Fails on HP-UX

2001-12-05 Thread Jill Stephenson
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 05, 2001 4:55 PM To: Ant Users List Subject: Re: Build Fails on HP-UX You must

Re: Quoting issue

2001-12-05 Thread Jill Stephenson
The value passed to signtool probably needs to be enclosed in quotes, try property name=nscert value=quot;S1 Corpapos;s VeriSign, Inc. IDquot;/ -- Jill - Original Message - From: Ed Mangual [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 06, 2001 7:47 AM Subject:

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 ... target name=BuildEnvironmentPkg.make exec executable=msdev.exe env key=CL

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 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, December 10,

Re: Setting classpath for Taskdef

2001-12-09 Thread Jill Stephenson
'. -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 Try changing the name of the taskdef to be all lowercase, it seems like the case of the task definition and actual usage

Re: Setting classpath for Taskdef

2001-12-09 Thread Jill Stephenson
- From: Jill Stephenson [mailto:[EMAIL PROTECTED]] Sent: Monday, 10 December 2001 14:52 To: Ant Users List Subject: Re: Setting classpath for Taskdef Try changing the name of the taskdef to be all lowercase, it seems like the case of the task definition and actual

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, Junit