Aroon
Aroon

Reputation: 177

Eclipse Plugin Dependencies

Is it possible if I have Three Eclipse plugins called A,B and C.And all are dependent on each other like A depends on B,B depends on C and C depends on A.

In Eclipse Plugin Development we generally create Extension Point that is used by other plugins as extension.

Upvotes: 0

Views: 75

Answers (1)

greg-449
greg-449

Reputation: 111142

This is going to give a 'circular dependency' error when you try to build as Eclipse will not be able to work out which plugin to build first.

Upvotes: 1

Related Questions