Re: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread Frederick Ayala
Thanks Theodore. I can confirm that Anwar solution worked. My build.sbt looks like: libraryDependencies ++= Seq( "org.scalanlp" %% "breeze" % "0.11.2", "org.scalanlp" %% "breeze-natives" % "0.11.2", "org.scalanlp" %% "breeze-viz" % "0.11.2" ) libraryDependencies ++= Seq("org.apache.flink"

Re: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread Theodore Vasiloudis
This sounds similar to this problem: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Flink-ML-as-Dependency-td1582.html The reason is (quoting Till, replace gradle with sbt here): the flink-ml pom contains as a dependency an artifact with artifactId > breeze_${scala.binary.ver

Re: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread Frederick Ayala
Thank you Anwar! That did the trick :) On Wed, Oct 28, 2015 at 1:30 PM, Anwar Rizal wrote: > Yeah > > I had similar problems with kafka in spark streaming. I worked around the > problem by excluding kafka from connector and then adding the library back. > > Maybe you can try something like:

Re: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread Anwar Rizal
Yeah I had similar problems with kafka in spark streaming. I worked around the problem by excluding kafka from connector and then adding the library back. Maybe you can try something like: libraryDependencies ++= Seq("org.apache.flink" % "flink-scala" % "0.9.1", "org.apache.flink" % "flink-c

Re: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread Frederick Ayala
I tried adding libraryDependencies += "org.scalanlp" % "breeze_2.10" % "0.11.2" but the problem persist. I also tried as explained in the Breeze documentation: libraryDependencies ++= Seq( "org.scalanlp" %% "breeze" % "0.11.2", "org.scalanlp" %% "breeze-natives" % "0.11.2", "org.scalanlp"

Re: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread DEVAN M.S.
Can you add libraryDependencies += "org.scalanlp" % "breeze_2.10" % "0.11.2" also ? Devan M.S. | Technical Lead | Cyber Security | AMRITA VISHWA VIDYAPEETHAM | Amritapuri | Cell +919946535290 | [image: View DEVAN M S's profile on LinkedIn] On

Fwd: Scala Breeze Dependencies not resolving when adding flink-ml on build.sbt

2015-10-28 Thread Frederick Ayala
Hi, I am getting an error when adding flink-ml to the libraryDependencies on my build.sbt file: [error] (*:update) sbt.ResolveException: unresolved dependency: org.scalanlp#breeze_${scala.binary.version};0.11.2: not found My libraryDependencies is: libraryDependencies ++= Seq("org.apache.flink"