vote up 2 vote down star

I have to build two eclipse-plugin projects into two separate jars with each one dependent on the other for compiling. Eclipse IDE complains about "cyclical dependency...". How do I build these plugin jars? I guess running these plugins by just putting them in the eclipse/plugin folder should be smooth.

flag

0% accept rate

3 Answers

vote up 7 vote down

If you have a cyclic dependency, you have two choices:

  1. You can get rid of it by putting them into one JAR. If they truly depend on each other, they really are just one entity.
  2. You can split out the packages that cause the cyclic dependency into a third JAR and deploy two plug-ins with two JARs each.
link|flag
+1 cyclical dependencies will hurt you again and again. Finding solutions for every single problem they cause can be come very tiring. – Joachim Sauer Mar 11 at 13:32
Java itself fell into it. java.lang, java.io, and java.util are all one monster package. – duffymo Mar 11 at 13:35
vote up 0 vote down

If (and only if) you really cannot get rid of this cyclical dependency, You could use a loose form of dependency between your plugins: DynamicImport-Package
(as suggested in this blog entry, with an emphasis on getting rid of the cycle though)

link|flag
vote up 0 vote down

Or you can do a maven approach, where you deploy a versioned jar to the repository.

Then project A depends on the latest released version of B in the repository and B depends on the latest version of A in the repository.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.