RE: OT: Compiling java source code

2006-02-17 Thread RADEMAKERS Tanguy
and it would be easy to setup a build file to compile and jar your code. /t -Original Message- Subject: OT: Compiling java source code From: Rick Root [EMAIL PROTECTED] Date: Thu, 16 Feb 2006 23:16:51 -0500 Thread: http://www.houseoffusion.com/cf_lists/index.cfm/method=messages threadid

Re: OT: Compiling java source code

2006-02-17 Thread Rick Root
RADEMAKERS Tanguy wrote: If you're going to compile java code and you don't want to go all the way and install some kind of IDE, then you should really really really look into using Ant. In fact, some linux distros already come with a version of ant installed (but since your distro shipped

Re: OT: Compiling java source code

2006-02-16 Thread Barney Boisvert
You have to include '.' in your CLASSPATH, or it won't pick it up. I'm not sure that's the problem, but I'm guessing SimpleGateway extends EmptyGateway? cheers, barneyb On 2/16/06, Rick Root [EMAIL PROTECTED] wrote: This is a bit off topic... I'm running CFMX Enterprise on a linux server and

Re: OT: Compiling java source code

2006-02-16 Thread Rick Root
Barney Boisvert wrote: You have to include '.' in your CLASSPATH, or it won't pick it up. I'm not sure that's the problem, but I'm guessing SimpleGateway extends EmptyGateway? Yes... it's actually a copy of the Directory Watcher gateway, and I just simplified it.. Okay.. I added . to the

Re: OT: Compiling java source code

2006-02-16 Thread James Holmes
Have you tried from within Eclipse, building the project to include the jars? On 2/17/06, Rick Root [EMAIL PROTECTED] wrote: Barney Boisvert wrote: You have to include '.' in your CLASSPATH, or it won't pick it up. I'm not sure that's the problem, but I'm guessing SimpleGateway extends

Re: OT: Compiling java source code

2006-02-16 Thread Rick Root
oh crud, I didn't put examples.jar into the class path, so it couldn't find the EmptyGateway stuff. Problem solved! Rick Rick Root wrote: Barney Boisvert wrote: You have to include '.' in your CLASSPATH, or it won't pick it up. I'm not sure that's the problem, but I'm guessing

Re: OT: Compiling java source code

2006-02-16 Thread Rick Root
I finally got everything compiled and working. Many issues along the way were solved, and since I went through this whole process 6 months ago and didn't remember a damn thing, I decided to blog about it this time: Compiling Custom Event Gateways For Dummies