RE: Help please.. ant 1.5b with weblogic 5.1

2002-10-15 Thread Eddie Bernard
Kiran- I believe the problem is you are not specifying what deployment descriptors to pick up. IIRC, Conor sent out a similar reply to such a question very recently. Nevertheless, try this instead: http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd"/> http://www.bea.com/servers/wls510/dtd/weblo

RE: , , and

2002-08-30 Thread Eddie Bernard
Donal- I had the same problem for the longest time using 1.4.1 and followed the same steps you took as well with no results. In the end, upgrading to 1.5 actually rectified the problem altogether as Conot et al made some significant changes (and improvements) in the behavior of the EJB tasks. S

RE: help with websphere ejbjar task

2002-08-19 Thread Eddie Bernard
Oops... this is the link I was referring to: http://jakarta.apache.org/ant/manual/install.html#librarydependencies -Original Message- From: Eddie Bernard [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 11:31 AM To: 'Ant Users List' Subject: RE: help with websphere e

RE: help with websphere ejbjar task

2002-08-19 Thread Eddie Bernard
Mike- Take a look at this page from the docs: http://jakarta.apache.org/ant/manual/index.html You need to install bcel.jar in ant/lib. Cheers! Eddie -Original Message- From: Shamberger, Michael [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 11:02 AM To: '[EMAIL PROTECTED]' S

RE: ebjc errors

2002-07-23 Thread Eddie Bernard
Conor- I'll help out on this, since Matt and I are both working on the same problem. Under previous versions of Ant, we did not encounter this problem. However, I'm not sure that this is in fact an Ant problem. We're thinking that it may be a Windoze problem of running out of command line buff

RE: Question about ant performance

2002-07-22 Thread Eddie Bernard
or if you're using ... which we're using with great success :). -Original Message- From: Diane Holt [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:27 PM To: Ant Users List Subject: Re: Question about ant performance --- Stefan Bodewig <[EMAIL PROTECTED]> wrote: > No, Ant does

RE: building ejb's with Ant1.5 using Weblogic 6.1

2002-07-11 Thread Eddie Bernard
From: Jesse Stockall [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 6:14 PM To: Ant Users List Subject: RE: building ejb's with Ant1.5 using Weblogic 6.1 On Thu, 2002-07-11 at 18:52, Eddie Bernard wrote: > Sorry for the length of this post in advance > > To follow up o

RE: building ejb's with Ant1.5 using Weblogic 6.1

2002-07-11 Thread Eddie Bernard
Sorry for the length of this post in advance To follow up on Matt's post (since I work with him), here's the pertinent logged information when running Ant1.5alpha using -debug: [ejbjar] Mapped publicId -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN to file /vobs/opel/dtds/ejb-jar

RE: Problem Checking File Back into ClearCase

2002-06-14 Thread Eddie Bernard
There's a good chance that the process that is performing the checkout does not have write permissions to the file which would cause the "Checkout, but removed" condition. I believe there's a built-in property for Ant called "ant.user". Find out if it's a valid user (preferably the user that inv

task and properties

2002-05-15 Thread Eddie Bernard
Is there a reason why properties in the task, in particular the nested tag are not expanded properly? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: issue with the Mail task

2002-05-07 Thread Eddie Bernard
BTW- I've experienced the same problem with Ant 1.4.1 as well. I think this is a problem that's been around for a while... just my 2 cents ;). -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 07, 2002 9:07 AM To: Ant Users List Subject: Re: issue with t

RE: How do I specify multiple Windows directories in one statement?

2002-05-01 Thread Eddie Bernard
how about a semicolon (;) instead of a colon (:) -Original Message- From: Tony [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 7:54 PM To: [EMAIL PROTECTED] Subject: How do I specify multiple Windows directories in one statement? Hi Folks How do I write the line below for Win

RE: EJB Packaging

2002-04-02 Thread Eddie Bernard
First question: What version of Weblogic are you using? It makes a difference since 6.x supports the J2EE standard for packaging and (AFAIK) 5.x does not. This means that you cannot package enterprise applications in 5.x (per the J2EE convention). Next, take a look through the archives for this

RE: Newbie question

2002-03-14 Thread Eddie Bernard
Try excludes="**/alltel/ebusiness/**" in your compilation task. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 2:56 PM To: Ant Users List Subject: Newbie question All, I want to exclude few directories from compiling. For ex, i

RE: Problem creating a jar file

2002-03-14 Thread Eddie Bernard
Try includes="**/src/**,**/pages/**,**/WEB-INF/**" -Original Message- From: James Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 1:24 PM To: [EMAIL PROTECTED] Subject: Problem creating a jar file Hello, I am trying to get a jar command to work via ant but I'm getting a

RE: Ant 1.4.1 ejbjar and EJB 2.0 local interfaces

2002-03-13 Thread Eddie Bernard
Conor- Just to let you know, I did download and install Ant 1.5alpha to take advantage of the super class lookup available in . This definitely makes a difference for my particular project I'm supporting! It includes all the necessary support classes I wanted originally without having to use t

RE: task question

2002-03-13 Thread Eddie Bernard
Try using the "update" attribute in the task. For more info on the usage: http://jakarta.apache.org/ant/manual/CoreTasks/jar.html -Original Message- From: Steven Curtis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 2:09 PM To: 'Ant Users List' Subject: task question Hell

RE: ant/junit newbie question

2002-03-11 Thread Eddie Bernard
Try fork="true" instead. This will spawn a new JVM and let it configure the classpath correctly. -Original Message- From: Marcusz Zafarano [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 5:56 PM To: Ant Users List Subject: ant/junit newbie question

RE: Need to create an empty file

2002-03-06 Thread Eddie Bernard
Try using . Usage: http://jakarta.apache.org/ant/manual/CoreTasks/touch.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 12:47 AM To: [EMAIL PROTECTED] Subject: Need to create an empty file Hi, I am a new user to Ant. One of the

RE: How obtain the number of files in a fileset ?

2002-03-06 Thread Eddie Bernard
Not sure if this is the right course of action, but take a look at the source for the task, Javac.java. In particular look at the scanDir method. I think this might be leveraged to perform what you're looking for. Unfortunately, it does not set any property, but I'm sure you can ,make it do so,

RE: Stopping rebuild of Jar file?

2002-03-05 Thread Eddie Bernard
I'm doing something similar with war and ear files. Have you tried using the "update" attribute in ? This works for me. -Original Message- From: Gwyn Evans [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 9:55 AM To: [EMAIL PROTECTED] Subject: Stopping rebuild of Jar file? I'

RE: ejbjar with exception

2002-03-01 Thread Eddie Bernard
I had the same problem using jikes 1.13. Cheers! Eddie -Original Message- From: Ying Wang [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 12:36 PM To: Sharanya Vemu; Eddie Bernard Cc: Ant Users List Subject: RE: ejbjar with exception I am using jikes and weblogicpath includes weblo

RE: ejbjar with exception

2002-03-01 Thread Eddie Bernard
I think this is harmless as it's only a caution. Just out of curiosity what compiler are you using? -Original Message- From: Ying Wang [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 12:10 PM To: Ant Users List Subject: ejbjar with exception Hi All, I got the warning massage

Carriage returns in message using

2002-02-27 Thread Eddie Bernard
Does anyone know how to embed carriage returns in a message when using the task: Here's what I'm trying but doesn't work: http://myserver/Projects/NightlyBuildResults/index.html. \n\n The JUnit results can be viewed online at http://pong.digitalthink.com:8675/Projects/NightlyBuildR

RE: Getting Local interfaces into an EJB using

2002-02-26 Thread Eddie Bernard
ould be affected by this option. I'm really looking for feedback on what ejbjar should look like in 1.5 and what it should support not just in this area but more generally too. Conor > -Original Message- > From: Eddie Bernard [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 27

RE: Getting Local interfaces into an EJB using

2002-02-26 Thread Eddie Bernard
Not trying to pester, but does anyone have any insight or thoughts on this? I'm sure *someone* has experienced this same problem before? -Original Message- From: Eddie Bernard [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 4:39 PM To: '[EMAIL PROTECTED]' S

Getting Local interfaces into an EJB using

2002-02-25 Thread Eddie Bernard
Has anyone else encountered this problem? I have several EJBs that use local interfaces as prescribed by the J2EE (a link to the tutorial explanation: http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/EJBConcepts6.html#62983). In my build file, I use the following:

RE: Hot Deploying EJBs on Weblogic 6.1

2002-02-20 Thread Eddie Bernard
I've been successful with the following: This presumes that the WLS is already running and the enterprise app already exists. If not, this will fail and you'll need to use the deploy option instead of update. Hope this helps! Cheers! Eddie -Original Message

RE: ejbjar task and manifest.mf

2002-02-20 Thread Eddie Bernard
Brian- There are several threads very recently about this (one of which I started several months ago): http://marc.theaimsgroup.com/?l=ant-user&m=101114295329626&w=2 What I ended up doing is creating a template manifest file and use it in all of my EJBs and enterprise archives. Here's a snippe

RE: Problem with ejbjar, log4j

2002-02-14 Thread Eddie Bernard
Could you provide output of the run using the -debug option and also provide the snippet of the build.xml target? I suspect that the weblogic classpath is not configured correctly, however this output will confirm it. -Original Message- From: Molitor, Stephen [mailto:[EMAIL PROTECTED]] S

RE: What does a valid manifest look like?

2002-02-13 Thread Eddie Bernard
I think you may need to add the following as the first line to your manifest: Manifest-Version: 1.0 -Original Message- From: Steve Donie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 11:51 AM To: 'Ant-User ([EMAIL PROTECTED])' Subject: What does a valid manifest look li

RE: Howto: add an entry in the META-INF/MANIFEST.MF using ejbjar?

2002-02-08 Thread Eddie Bernard
Yes, this is what I was alluding to. I also thought that extended , but it appears that it doesn't. So the nested element does not work with . There's a good reason for using the task over for creating EJBs. I started a thread on this several weeks ago so I don't want to rehash the same di

RE: Howto: add an entry in the META-INF/MANIFEST.MF using ejbjar?

2002-02-08 Thread Eddie Bernard
Funny, I spent countless hours on this same problem several weeks ago. It turns out that Ant has a default manifest that it uses if lieu of a user specified manifest. What I found from the Java specs as well is that the "Manifest-Version" attribute is a mandatory entry. I'm not certain, but thi

RE: background

2002-02-07 Thread Eddie Bernard
It's funny. I'm actually working on the same thing. Try using . I'm using it for some JUnit tests and haven't perfected it yet, but my Weblogic server starts up just fine. The docs provide some framework for this. Cheers! Eddie -Original Message- From: Antony Stace [mailto:[EMAIL PRO

RE: doing a build with multiple directories

2002-02-07 Thread Eddie Bernard
True :), however I was referring to the specifics of this particular snippet of usage. -Original Message- From: Diane Holt [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 11:43 AM To: Ant Users List Subject: RE: doing a build with multiple directories --- Eddie Bernard

RE: doing a build with multiple directories

2002-02-06 Thread Eddie Bernard
I assume that Project is at a higher level than client (couldn't tell from the indentation provided ;) ). Anyway, to take care of the error associated with the missing APIs, you need to add the following (of course, others could recommend other ways, but this is how I'd do it): The task u

RE: doing a build with multiple directories

2002-02-06 Thread Eddie Bernard
Do the directories in question have a common root? If so, you can set the srcdir attribute at the common level, then use the nested task to include the files you want. For more info, take a look at the docs: http://jakarta.apache.org/ant/manual/CoreTasks/javac.html and http://jakarta.apache.or

RE: Any way to echo a fileset?

2002-02-05 Thread Eddie Bernard
First thing I would suggest is to: 1) Get rid of the "includes" attribute since the task is smart enough to know to pick up *.java -- or, 2) Set the "includes" and "excludes" attributes as follows: includes="**/${build.includedFiles}" excludes="**/${build.excludedFi

RE: EJBJar under Weblogic 6.1...

2002-02-01 Thread Eddie Bernard
I've tried that and it doesn't work for me unfortunately. -Original Message- From: Pravin Pillai [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 5:23 PM To: Ant Users List; [EMAIL PROTECTED] Subject: RE: EJBJar under Weblogic 6.1... Abt the DTDs, do you really need to have th

RE: EJBJar under Weblogic 6.1...

2002-02-01 Thread Eddie Bernard
Ajay- I believe the performance improvement has to do with some efficiencies built into the 6.1 ejbc. I've also noticed a significant decrease in the time it takes to generate ejbs. Another nice feature in Ant (I think since Ant 1.4 but I could be wrong) is the "noEJBC" attribute. This allows c

RE: EJBJar under Weblogic 6.1...

2002-02-01 Thread Eddie Bernard
This snippet from my build.xml works for me. Two things: 1) It renders some warnings about the ejbc classpath having the home interface class in the path. From what I can tell, these can be ignored. I haven't figured out exactly how to get rid of them, but they don't seem to harm anything. 2)

RE: Adding/extending a manifest using

2002-01-15 Thread Eddie Bernard
or their help on this. If anyone has something else to lend to this, please do so -- it will be of great value to everyone concerned :). Cheers! Eddie -Original Message- From: Todd Chambery [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 12, 2002 7:35 AM To: Ant Users List Subject:

RE: Adding/extending a manifest using

2002-01-15 Thread Eddie Bernard
the 72'nd byte. -Original Message- From: Todd Chambery [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 11:47 AM To: Ant Users List Subject: Re: Adding/extending a manifest using - Original Message - From: "Eddie Bernard" <[EMAIL PROTECTED]> To:

RE: Adding/extending a manifest using

2002-01-15 Thread Eddie Bernard
so -- it will be of great value to everyone concerned :). Cheers! Eddie -Original Message- From: Todd Chambery [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 12, 2002 7:35 AM To: Ant Users List Subject: Re: Adding/extending a manifest using - Original Message - From: "Ed

RE: Adding/extending a manifest using

2002-01-11 Thread Eddie Bernard
know how the Ant people will respond, but I can mail it to you if you want. Todd - Original Message - From: "Eddie Bernard" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Friday, January 11, 2002 3:05 AM Subject: RE: Adding/

RE: Adding/extending a manifest using

2002-01-11 Thread Eddie Bernard
e that helps, Todd - Original Message - From: "Eddie Bernard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 09, 2002 7:54 PM Subject: Adding/extending a manifest using > OK, I've haven't completely given up on using for my WebLogic 6.1

RE: Adding/extending a manifest using

2002-01-10 Thread Eddie Bernard
/extending a manifest using I don't have 75 beans, but I have 6 and build them all with one target (not - actually 2, one for the vanilla ejb.jar and one to put that into ejbc) and won't have to change that if/when we add more beans. Don't know what to say about the manifest problem. So

RE: Adding/extending a manifest using

2002-01-10 Thread Eddie Bernard
the jar task to update the manifest on its own See the archives for a discussion of the manifest updating capability of the jar task in Ant 1.4.1 jmp > -Original Message- > From:

RE: Adding/extending a manifest using

2002-01-10 Thread Eddie Bernard
ct: RE: Adding/extending a manifest using I don't have 75 beans, but I have 6 and build them all with one target (not - actually 2, one for the vanilla ejb.jar and one to put that into ejbc) and won't have to change that if/when we add more beans. Don't know what to say a

RE: Adding/extending a manifest using

2002-01-09 Thread Eddie Bernard
have 6 and build them all with one target (not - actually 2, one for the vanilla ejb.jar and one to put that into ejbc) and won't have to change that if/when we add more beans. Don't know what to say about the manifest problem. Sorry... Donnie > -Original Message- > From: Ed

Adding/extending a manifest using

2002-01-09 Thread Eddie Bernard
OK, I've haven't completely given up on using for my WebLogic 6.1 project. The reason I want to use it is that I have approximately 75 EJBs that I want to build and the target I've created that uses neatly creates each EJB with only one target. Using some of the other suggested methods (which

RE: for WebLogic 6.1

2002-01-04 Thread Eddie Bernard
it is the brut force method but it worked, only took about 5 mins What I think should happen is that introspection be done to determine which dependent classes are needed and add them automagically. JMO dwfa --- Eddie Bernard <[EMAIL PROTECTED]> wrote: > I'm trying to create an EJB

for WebLogic 6.1

2002-01-04 Thread Eddie Bernard
I'm trying to create an EJB using the task with WebLogic 6.1. I'm using Ant 1.4.1. Here's the stack trace: ejbs: [echo] --(DT)--> Generating ejbs Overriding previous definition of reference to opel.rdbms.deployment.descriptors [ejbjar] building TrackingBean.jar with 6 files [ejbc]

Crimson error in Ant 1.4 and Ant 1.4.1?

2001-10-23 Thread Eddie Bernard
Hi All- Has anyone experienced this problem? We keep getting this message with either Ant 1.4 or Ant 1.4.1 using JDK 1.2.2_007 on Windows NT 4.0. A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation target' has occurred in : 'org/apache/crimson/parser/Parser2.maybeCo

RE: Ant 1.4 -- javac task

2001-10-21 Thread Eddie Bernard
the fork="yes" attribute, since that is the only way to control the memory of the javac process. You should have received a warning about that. Can you try adding the fork attribute in and also running an ant -debug to see why this may be happening? Conor > -----Original Message

Ant 1.4 -- javac task

2001-10-21 Thread Eddie Bernard
Has anyone experienced this problem? I need to extend the memory size parameter for the javac task. The command line syntax for this would normally look like: javac -J-Xms64m -J-Xmx512m Foo.java The only way you can make these changes is within Ant 1.4 and higher. So, in looking at the docs I

RE: Anonymous CVS

2001-09-04 Thread Eddie Bernard
CVS - Original Message - From: "Eddie Bernard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, September 04, 2001 11:26 PM Subject: Anonymous CVS > Has anyone else experienced this problem lately with anon CVS acces

Anonymous CVS

2001-09-04 Thread Eddie Bernard
Has anyone else experienced this problem lately with anon CVS access? % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic checkout jakarta-ant-antidote cvs checkout: in directory jakarta-ant-antidote: cvs checkout: cannot open CVS/Entries

RE: ant and Clearcase checkin

2001-08-15 Thread Eddie Bernard
Here's a good reference for this. It's probably better explained ;) http://www.mail-archive.com/ant-user@jakarta.apache.org/msg03476.html -Original Message----- From: Eddie Bernard Sent: Thursday, August 16, 2001 12:13 AM To: '[EMAIL PROTECTED]' Subject: RE: ant a

RE: ant and Clearcase checkin

2001-08-15 Thread Eddie Bernard
Hari- Inside of ant.jar, there's a file called default.properties. If you unzip this file, it's located in org/apache/tools/ant/taskdefs. This property file creates a mapping for all tasks that will be natively recognized without having to explicitly create a . It turns out that in the version

RE: ant and Clearcase checkin

2001-08-14 Thread Eddie Bernard
Did you try setting up a taskdef for CCCheckin? This should work provided that the optional.jar is in the classpath when Ant is invoked. -Original Message- From: hari ramasubbu [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 14, 2001 3:47 PM To: [EMAIL PROTECTED] Subject: ant and Clea

RE: Build Monitor -- SUCCESS!!

2001-06-25 Thread Eddie Bernard
s it work? Thanks. Afz -Original Message- From: Eddie Bernard [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 5:46 PM To: '[EMAIL PROTECTED]' Subject: Build Monitor -- SUCCESS!! Success!! I finally figured out what the problem was. I'm using Sun's JavaMail

RE: using optional tasks with the binary distribution

2001-06-07 Thread Eddie Bernard
After you've downloaded the optional.jar as outlined on the thread below, you may also have to add a tag in your build.xml to make use of the optional task, if they're not recognized "natively" (although I believe that the junit task does not require it, but it's a good preventative measure). Ex

Build Monitor -- SUCCESS!!

2001-05-22 Thread Eddie Bernard
th to make the e-mail notification work. This, of course, presuming that you're also using Sun JavaMail 1.2 -Original Message- From: David Scassa [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 4:39 PM To: Eddie Bernard Subject: hmm. Importance: High The ant mailing li

RE: Listener: BuildMonitor.class

2001-05-22 Thread Eddie Bernard
I had the exact problem recently and FINALLY got it work -- well almost, it still doesn't send e-mail. Nevertheless, I did get it to work by adding the monitor.properties file in the same path as the BuildMonitor.class file. In fact, I created a jar file and added it to the ant/lib directory. T

RE: Build output in XML format

2001-05-21 Thread Eddie Bernard
n attribute 'logfile'? I need it. Please help me... - Original Message - From: "Eddie Bernard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 9:00 AM Subject: RE: Build output in XML format > Dave, > > Thanks for vol

RE: Build output in XML format

2001-05-21 Thread Eddie Bernard
lish this, what is it you need to do? Cheers, David Ventimiglia MSDW P.S. Say, "Hi" to Matt for me. -Original Message- From: Eddie Bernard [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 10:19 AM To: '[EMAIL PROTECTED]' Subject: Build output in XML format D

Build output in XML format

2001-05-21 Thread Eddie Bernard
Does anyone have or know of a taskdef (or attribute) that can be used to generate Ant output, in particular build logging information, in XML? I know that there are classes such as XmlLogger and other associated classes and methods to accomplish this, but I don't want to reinvent the wheel ;)

RE: How to concatenate files in ant

2001-05-15 Thread Eddie Bernard
I'm having the same problem. Actually what I want to do is the following: echo "blah blah blah" > foo.txt echo bar.txt >> foo.txt Could you please this task or e-mail it to me? -Original Message- From: Chris Winters [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 8:00 AM To: [

Ant 1.4 ??

2001-05-03 Thread Eddie Bernard
I must've missed something on the web site or I'm not looking in the right place. Where's the distribution for Ant 1.4? Is there any documentation on it available?

RE: Newbie with javac classpath problem

2001-04-30 Thread Eddie Bernard
Bill- In your first attempt try changing the commas (,) to semicolons (;). That should work. HTH! -Original Message- From: Bill Pfeiffer [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 28, 2001 9:57 AM To: Ant-User Subject: Newbie with javac classpath problem I have just started wri

RE: Setting up the BuildMonitor listener

2001-04-27 Thread Eddie Bernard
he monitor.properties in the build dir? Im not sure of that. actually i thought the class looks fr the monitor.properties file in the same dir as the class is. Try putting the file in the same place as your jar file. Actually when i had tried this, I had put the class in the same dir as my build fi

Setting up the BuildMonitor listener

2001-04-26 Thread Eddie Bernard
Please excuse the newbie question, but this has been driving me bonkers for the last couple of days I'm attempting to configure the BuildMonitor listener provided by Will Glozer. Here are the steps I performed: 1. Compile the BuildMonitor.java code 2. Create a jar with the BuildMonitor.c