What are the pros and cons of the SVN plugins for Eclipse, Subclipse and Subversive? [closed]

Both are very similar but Subversive is the “eclipse svn provider”. I primarily use Subversive because of a few convenient features: Grouping of history When I’m browsing the history of a branch instead of just seeing a bunch of rows for every commit it can group commits by today, week, etc. Mapping of trunk, branches, … Read more

Eclipse/Java code completion not working

Try restoring the default options in ‘Windows > Preferences > Java > Editor > Content Assist > Advanced‘ An example of the kind of data you see in this preference screen, however not necessarily what you currently have. (From Vadim in this blog post ” Content Assist Duplicates in Eclipse (Mylyn)”: if have duplicate Mylyn … Read more

No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?

On your Eclipse IDE, go into Window > Preferences > Java > Installed JREs > and check your installed JREs. You should have an entry with a JDK there. Select the Execution Env as show below. Click OK Then Right-Click on your Project -> Maven -> Update Project Additionally, you may have to change Maven … Read more

Access restriction on class due to restriction on required library rt.jar?

There’s another solution that also works. Go to the Build Path settings in the project properties. Remove the JRE System Library Add it back; Select “Add Library” and select the JRE System Library. The default worked for me. This works because you have multiple classes in different jar files. Removing and re-adding the JRE lib … Read more

How do I change Eclipse to use spaces instead of tabs?

Java Editor Click Window » Preferences Expand Java » Code Style Click Formatter Click the Edit button Click the Indentation tab Under General Settings, set Tab policy to: Spaces only Click OK ad nauseam to apply the changes. [Note: If necessary save profile with a new name as the default profile cannot be overwritten.] Default … Read more