On Sat, 2005-06-11 at 19:50 -0400, Steven Caswell wrote: > Just one question about the jar: > > The manifest indicates the jar was built with JDK 1.5. Does this > present any issues with running against previous Java versions?
File project.properties contains this: # generate .class files that can be loaded into a version 1.2 JVM. # Digester requires java1.2 collection classes, so doesn't support # 1.1 JVMs. maven.compile.target=1.2 maven.compile.source=1.2 So the .class files in the jar are useable in any 1.2 JVM, despite being compiled via JDK 1.5. I have tested this and the jar works fine with java 1.3. Regards, Simon --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
