I am creating my projects with simple 'activator new '. Now i wanted to create a multimodule project to split for instance frontend logic, backend logic. What is the best way to create multimodule project with activator.
Asked
Active
Viewed 84 times
2 Answers
2
Activator is just an enhanced sbt, thus you can freely follow the sbt instruction: http://www.scala-sbt.org/0.13/tutorial/Multi-Project.html
In short you have to put your activator project in subdirectories and define dependency in the root build.sbt

ar2r
- 56
- 3
1
There is a multi-module project template here: https://www.lightbend.com/activator/template/ScalaQualityCodeMultiprojectSeed

EthanP
- 1,663
- 3
- 22
- 27