As I was mentioning, I want to figure out if my jboss is actually compiling or if it is just downloading a bunch of files that have already been compiled. Since i am using the OpenJDK for running and compiling, I decided that the easiest way to see if I am compiling is to wrap the java compiler with a simple script:
#!/bin/bashecho "Executed javac at `date`: with arguments of $*" >> /home/jhford/javac-jobs./javac-real $*
This script gives me output like this:
Executed javac at Sat Sep 20 11:09:11 EDT 2008: with arguments of -version
Unfortunatley, when using the command ‘ant’ I get no output, which leads me to beleive that this isn’t building the software. I am going to have to find something else to out how to actually compile since as I understand, I must build from source to meet the Fedora packaging guidelines.