irvingc / dbscan-on-spark

An implementation of DBSCAN runing on top of Apache Spark
Apache License 2.0
183 stars 58 forks source link

A small bug in README.md #7

Closed hi-T0day closed 6 years ago

hi-T0day commented 7 years ago

resolvers += "bintray/irvingc" at "http://dl.bintray.com/irvingc/maven" libraryDependencies += "com.irvingc.spark" %% "dbscan" % "0.1.0"

I think the last line should be change to libraryDependencies += "com.irvingc.spark" %% "dbscan_2.10" % "0.1.0"

Add "_2.10"

sergeyjsg commented 6 years ago

No, actually %% means add your current version of scala to library name. And % means no substitute, So "com.irvingc.spark" %% "dbscan" equals to "com.irvingc.spark" % "dbscan_2.10"

irvingc commented 6 years ago

@hi-T0day, @sergeyjsg is correct, see here for reference. Thanks @sergeyjsg .