Lifty | unresolved dependency: org.lifty # lifty; 1.7.4: not found

I am trying to add to plugins / build.sbt:

resolvers += Resolver.url("sbt-plugin-releases",
  new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)

addSbtPlugin("org.lifty" % "lifty" % "1.7.4")

and then I get:

Exception: unresolved dependency: org.lifty#lifty;1.7.4: not found

Any ideas how to fix this?

I do as they say at http://lifty.github.com/Installing+The+Plugin.html

+1
source share
1 answer

Lifty has not yet released the sbt-0.11.3 binary. (You can see this by visiting http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases ).

Fortunately, sbt-0.11.2 plugins are compatible with sbt-0.11.3. Unfortunately, the syntax for using plugin 0.11.2 from 0.11.3 is a bit elusive :

libraryDependencies += 
  Defaults.sbtPluginExtra( 
    "org.lifty" % "lifty" % "1.7.4", 
    "0.11.2", 
    "2.9.1" 
  ) 

sbt-0.11.2, scala -tools.org shutdown , 0.11.3-2, sbt.version=0.11.2 project/build.properties .

+1

All Articles