We have been keeping the jgit library itself on Java 5, and the jgit command line tools should also be on Java 5 and avoid using any Java 6 APIs (for now). Not all of our target platforms have a Java 6 virtual machine available out of the box. Since the pgm project broke out of the library project our code already conforms to Java 5 APIs, so we just have to switch the build path settings. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- org.spearce.jgit.pgm/.classpath | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/org.spearce.jgit.pgm/.classpath b/org.spearce.jgit.pgm/.classpath index cc861d2..50dd6d3 100644 --- a/org.spearce.jgit.pgm/.classpath +++ b/org.spearce.jgit.pgm/.classpath @@ -2,7 +2,7 @@ <classpath> <classpathentry kind="src" path="src"/> <classpathentry exported="true" kind="lib" path="lib/args4j-2.0.9.jar" sourcepath="lib/args4j-2.0.9.zip"/> - <classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> <classpathentry combineaccessrules="false" exported="true" kind="src" path="/org.spearce.jgit"/> <classpathentry kind="output" path="bin"/> </classpath> -- 1.6.0.rc0.182.gb96c7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html