Greg Beech
Greg Beech

Reputation: 136717

What's happened to com.typesafe.sbt#sbt-pgp?

I've been using spray-swagger which has a dependency on com.typesafe.sbt#sbt-pgp, and my builds suddenly started failing saying that this dependency couldn't be resolved. As you'll see if you click that link, it just returns a 404 error.

It seems odd that this has just been deleted... anybody know what's happened to it?

Upvotes: 3

Views: 582

Answers (1)

Mik378
Mik378

Reputation: 22191

Maybe this "fresh" workaround can help you (the last post).

It seems to be a "bug/TODO" that needs to be fixed, as it is said in it:

... and artifact "com.typesafe.sbt", "sbt-pgp_2.10", "0.8.3" cannot easily be found. It should only be a build dependency, not runtime depedency.

Apparently, currently (before a patch), you have to exclude SBT-PGP from downloaded dependencies group:

"com.gettyimages" % "spray-swagger_2.10" % "0.3.1" exclude ("com.typesafe.sbt", "sbt-pgp")

Upvotes: 2

Related Questions