From d9fc01b8b2043e0e0bcf719c62be3d5889ac9954 Mon Sep 17 00:00:00 2001 From: Christian Halstrick <christian.halstrick@sap.com> Date: Tue, 2 Feb 2010 13:30:48 +0100 Subject: [PATCH] Fix .classpath to make jgit easily runnable from inside eclipse When running jgit from inside Eclipse (e.g. rightclick on project org.eclipse.jgit.pgm and select Run as->Java application) no commands are found. This is because the commands are loaded from a resource file /META-INF/services/org.eclipse.jgit.pgm.TextBuiltin and this file is not anymore on the classpath. I fixed this by modifying .classpath to contain the META-INF directory. Signed-off-by: Christian Halstrick <christian.halstrick@sap.com> --- org.eclipse.jgit.pgm/.classpath | 1 + 1 file changed, 1 insertion(+) diff --git a/org.eclipse.jgit.pgm/.classpath b/org.eclipse.jgit.pgm/.classpath index 304e86186..c2f8fa7c8 100644 --- a/org.eclipse.jgit.pgm/.classpath +++ b/org.eclipse.jgit.pgm/.classpath @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> + <classpathentry excluding="*" including="META-INF/" kind="src" path=""/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="output" path="bin"/> -- GitLab