Tag-Archive for ◊ springsource ◊



After turning my application running under SpringSource Tool Suite into a web app, then trying to run pre-existing junit tests, I started getting the error:

Plug-in org.maven.ide.eclipse.jdt was unable to load class org.maven.ide.eclipse.jdt.internal.launch.MavenRuntimeClasspathProvider.

An error occurred while automatically activating bundle org.maven.ide.eclipse.jdt (810).

The fix was to delete all the existing Run configurations (Run As / Run Configurations… / select m2 custom Run Configurations and delete them).
Restart STS (may not be necessary), and it now works!

SpringSource Tool Suite Buttons
Tuesday, February 23rd, 2010 | Author:

After installing SpringSource Tool Suite 2.3.0 on Ubuntu 9.10, various IDE buttons were not working. The fix is to set the right value for GDK_NATIVE_WINDOWS before running it, e.g. have a file in /usr/bin that looks something like:

#!/bin/sh
export GDK_NATIVE_WINDOWS=1
/usr/lib/springsource/sts-2.3.0.RELEASE/STS

That’s it for now.