2

I am building some web applications using SBT to handle my dependencies. The web apps are using some common libraries and will likely end up running in the same web container. I would like to use a project setup where each of these web applications are sub-projects and all of them are started when I run container:start in SBT. Are there any guides how to set this up? Is there a better way to organize my project?

Emil L
  • 20,219
  • 3
  • 44
  • 65

1 Answers1

1

xsbt-webplugin has an example in src/sbt-test/webapp-common/multi-container.

mcandre
  • 22,868
  • 20
  • 88
  • 147
retronym
  • 54,768
  • 12
  • 155
  • 168
  • This link is no longer valid due to changes for the 1.0 version of that plugin. That example can now be found here: https://github.com/earldouglas/xsbt-web-plugin/blob/0.9/src/sbt-test/webapp-common/multi-container/project/Build.scala – Martin Snyder Dec 12 '14 at 18:01