How to run OpenFire sourcecode outside of IDE

As part of a project I am working on, I downloaded the OpenFire source code, edited it in eclipse, debugged it and built it using ant. I am new to JAVA, though, and even newer to Eclipse. I want to recompile my version of the project, and install it on a stage server. Is there an executable file created when I do an ant build? Where is it? Any help would be appreciated

-Lost in the Details

The is many option to run openfire after building from ant.

You can use: ant run

one another way is use this command: java -DopenfireHome=./ -Dopenfire.lib.dir=./lib/ -classpath ./lib/startup.jar -jar ./lib/startup.jar

from command line.

Regards:

Vishawjeet