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.
|
|
|
|
|
|
|
If you have a cyclic dependency, you have two choices:
|
||||
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
