To create the .sbt file in the root directory, SBT uses the information in the project directory. So put build.sbt in the project directory and set libraryDependencies there:
libraryDependencies ++= Seq("com.some.company" %% "some-lib" % "1.0.0")
So, to clarify, now you have two build.sbt :
./build.sbt./project/build.sbt
source share