By default, Scalatra expects the "webapp" directory to be at src/main/webapp
. How could that be changed to, e.g., content/doc-root
?
sbt allows for customizing its default directories using something like the following:
scalaSource <<= (baseDirectory)(_ / "src")
So I assume it's just a matter of knowing the right "configuration key" to use...
@Kelsey Gilmore-Innis has the right answer, but since it's not accepted let's break it, break it, break it down.
First, I'm assuming you're following Getting started guide to install Scalatra using
g8
. Hopefully the same version I just got.g8 scalatra/scalatra-sbt
What that g8 template did was to set up an sbt 0.13 build which uses scalatra-sbt 0.3.2 plugin:
This plugin internally uses JamesEarlDouglas/xsbt-web-plugin 0.4.0 to do the webapp-related settings.
xsbt-web-plugin 0.4.0
This is why xsbt-web-plugin becomes relevant even though you just want to change Scalatra's setting. The setting you need to rewire is called
webappResources in Compile
. How does that work?rewiring webappResources
To rewire the setting, open
project/build.scala
. Addto the import clauses. Then change settings as follows:
Now move
src/main/webapp
tocontent/doc-root
, reload sbt, and that should be it.