Emil L
Emil L

Reputation: 21081

How to use SBT with multiple sub project web applications?

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?

Upvotes: 2

Views: 525

Answers (1)

retronym
retronym

Reputation: 55028

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

Upvotes: 1

Related Questions