twitter / cassovary

Cassovary is a simple big graph processing library for the JVM
http://twitter.com/cassovary
Apache License 2.0
1.05k stars 150 forks source link

How to Fix a Self-Dependence Error #229

Closed sangminoh715 closed 6 years ago

sangminoh715 commented 6 years ago

Hi,

I am trying to build Cassovary, but I am getting an error saying a module cannot depend on itself. [error] a module is not authorized to depend on itself: com.twitter#cassovary-core_2.11;7.1.0

Before this error, there are warning messages saying that a circular dependency exists. [warn] circular dependency found: com.twitter#cassovary-collections_2.11;7.1.0->com.twitter#cassovary-core_2.11;7.1.0->... [warn] circular dependency found: com.twitter#cassovary-core_2.11;7.1.0->com.twitter#cassovary-collections_2.11;7.1.0->...

How would I go about fixing this problem? I am new to Cassovary and this is the first time I am using Scala, so I am a little lost. I've read some things about two things referencing the same source, but I am not really sure how to check whether this is true nor how to fix this problem.

Thank you.