Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SBT can't resolve dependency that exists on Sonatype repo

Tags:

scala

sbt

uima

I'm attempting to include a dependency known as uimascala in my project. It's available on the Sonatype repository, but for some reason SBT won't can't find it. Here's my build.sbt.

val sparkCore = "org.apache.spark" % "spark-core_2.10" % "1.2.0"
val uimaScala = "com.github.jenshaase.uimascala" % "uimascala-core_2.10" % "0.5.0-SNAPSHOT"

// test deps
val specs2 = "org.specs2" %% "specs2-core" % "2.4.15" % "test"

lazy val commonSettings = Seq(
  organization := "foo",
  version := "0.1.0",
  scalaVersion := "2.10.4"
)

lazy val `twitter-sentiment-stream` = (project in file(".")).
  settings(commonSettings: _*).
  settings(
    name := "bar",
    resolvers ++= Seq(
      //"Sonatype OSS Releases"  at "http://oss.sonatype.org/content/repositories/releases/",
      "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
    ),
    libraryDependencies ++= Seq(sparkCore, uimaScala, specs2)
  )

addCompilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.full)

When I attempt to build the project I get the following error in my output, but when I check the URL that it attempted it's valid.

[warn] ==== Sonatype OSS Snapshots: tried
[warn]   http://oss.sonatype.org/content/repositories/snapshots/com/github/jenshaase/uimascala/uimascala-core_2.10/0.5.0-SNAPSHOT/uimascala-core_2.10-0.5.0-SNAPSHOT.pom
[info] Resolving org.fusesource.jansi#jansi;1.4 ...
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: com.github.jenshaase.uimascala#uimascala-core_2.10;0.5.0-SNAPSHOT: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
sbt.ResolveException: unresolved dependency: com.github.jenshaase.uimascala#uimascala-core_2.10;0.5.0-SNAPSHOT: not found
like image 390
Sean Glover Avatar asked Feb 10 '15 03:02

Sean Glover


2 Answers

I suspect the hand-typed resolver URL. I was able to resolve your libraries with the following change using sbt 0.13.7:

resolvers ++= Seq(
  Resolver.sonatypeRepo("public"),
  Resolver.bintrayRepo("scalaz", "releases")
)

Maybe https is now required.

like image 174
Eugene Yokota Avatar answered Nov 15 '22 08:11

Eugene Yokota


For a even shorter version, you can use Opts.resolver.sonatypeSnapshots instead of your custom resolver.

like image 38
Pierre DAL-PRA Avatar answered Nov 15 '22 08:11

Pierre DAL-PRA