Compiling Robot Code

OK, so I’m on a Linux box (Fedora 17 which i would recommend to anyone) and am writing an API for FRC robots (see here: https://github.com/theNerd247/JavaCSVReader) and need to compile the code I write using the FRC API and NOT the standard Java SE 7 API.

I have not been/don’t have/DO NOT want to use ANT for many and various reasons. Instead I have a couple of BASH files written to replace all of my ANT needs, and they use the javac and javadoc tools etc…

I am mainly using the sources found in the java.util package, but I want the one that the robot uses and not the SE 7 one. Help?

Much thanks.