Is it possible to override or modify built-in SBT tasks (like compile) to depend on custom tasks in my own Build.scala? Overriding e.g. \"compile\" directly is not possible sinc
In the base_dir/project/ folder create a file build.sbt and put libraryDependencies += ... there.
base_dir/project/
build.sbt
libraryDependencies += ...
That's the idiomatic SBT way to build your "build project", also known as "Meta Build".