object ModuleSplitStyle
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ModuleSplitStyle
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class SmallModulesFor(packages: List[String]) extends ModuleSplitStyle with Product with Serializable
Mix between FewestModules / SmallestModules
Mix between FewestModules / SmallestModules
* Make modules as small as possible for all classes in any of packages (or subpackages thereof). * Make as few modules as possible for everything else (while not including unnecessary code).
- Note
In order to avoid ambiguity between packages and classes (and keep a simple interface), selecting individual classes is not supported.
Value Members
- case object FewestModules extends ModuleSplitStyle with Product with Serializable
Make as few modules as possible (while not including unnecessary code).
Make as few modules as possible (while not including unnecessary code).
This is the default and the only style that works with ModuleKind.NoModule.
- case object SmallestModules extends ModuleSplitStyle with Product with Serializable
Make modules as small as possible.