Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

resolvers not shared to dependent sbt projects?

In this weird case that seems to involve xsbt-web-plugin, I get the error

unresolved dependency: play#play-json_2.10;2.2-SNAPSHOT: not found

when loading the server subproject. The dependency and the correct resolver are specified in the library subproject, which server depends on. It doesn't blow up if I don't include webSettings in server, but I am trying to build a .war there.

[root]/project/Build.scala

import sbt._
import Keys._

object MyBuild extends Build {
  lazy val root = Project("root", base = file(".")).aggregate(library,server)

  lazy val library = Project(id = "library", base = file("library"))

  lazy val server = Project(id = "server", base = file("server")).dependsOn(library)
}

[root]/project/plugins.sbt

// p.s. why do I need this here instead of [root]/server/project/plugins.sbt?
addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "0.3.0")

[root]/library/build.sbt

scalaVersion := "2.10.1"

libraryDependencies += "play" %% "play-json" % "2.2-SNAPSHOT"

resolvers += "Mandubian repository snapshots" at "https://github.com/mandubian/mandubian-mvn/raw/master/snapshots/"

[root]/server/build.sbt

scalaVersion := "2.10.1"

seq(webSettings :_*)
like image 517
arya Avatar asked Dec 26 '22 01:12

arya


1 Answers

You can use resolvers in ThisBuild += ... to make a resolver available to any sub project of your build. (That would go into [root]/build.sbt.)

like image 98
0__ Avatar answered Jan 05 '23 15:01

0__