Hi all,
I'm doing a build script for a Java application to run inside the Oracle JVM. In order to import the 50-odd classes, it appears I need to bring them in in order so any dependencies are present before compilation.
For each class, I'm running 'create or replace and compile java source {className} as {classPath}
' for each file. Doing this gives me a compilation error, as the required class(es) are not imported.
How can I generate a list of the classes, in dependency order, that is, as you go down the list, the class's dependencies are listed above. I would prefer to do this as an ant task.
Also if you have a better idea of how to get these classes imported, I'd love to hear your ideas.
Thanks