Gainster
Gainster

Reputation: 5631

installing source control with Aptana

I am using Aptana Studio 3, build: 3.2.1.201207261642, I want to add my code any kind of source control for managability. Its just a pet project , which I am doing to learn ruby on rails.

When install SVN through aptana IDE , I am getting the following error.

Am I missing pre-requisites?

enter image description here

Upvotes: 1

Views: 506

Answers (2)

David W.
David W.

Reputation: 107090

It looks like your problem is that you want to use the Subversion Revision Graph and you're missing a dependency, and Aptana can't find it. There are two solutions:

  • Uncheck Subversion Revision Graph. If you need it, you can use TortoiseSVN.
  • Install the missing dependency. It's there on the bottom of your error message: org.eclipse.draw2d (version 3.2.0). It could be that it's just not installed, or that you have an older version installed. You might want to update all of your installed software and see if you can install it.

Cigano Morrison Mendez mentioned that Subclipse Integration for Mylyn 3.x (Optional) is also missing a prerequisite, but I don't see it. However, Mylyn is a issue tracking system for Eclipse and integrates to things like MantisBT, Rally and Jira. If you don't have an issue tracking system, you really don't need Mylyn. Go ahead and uncheck it.

Upvotes: 0

Leonel Sanches da Silva
Leonel Sanches da Silva

Reputation: 7230

To get Subclipse working without prerequisites, uncheck:

  • Subclipse Integration for Mylyn 3.x (Optional)
  • Subversion Revision Graph

They are not mandatory.

If you really want to use Subclipse Revision Graph, Add GEF to your update sites and install Draw2D: Eclipse Update Site

If you really want to use Subclipse Integration for Mylyn 3.x, install Eclipse Marketplace. This site would help.

Upvotes: 1

Related Questions