scala-developer
Installation
SKILL.md
Scala Development
Build Tool Selection
Projects may use bloop (faster incremental compilation) or sbt. Check which is available before compiling — using the wrong one wastes time and confuses error output.
- Check for
.bloopdirectory first — if it exists, the project is configured for bloop:
bloop compile <module-name>
bloop test <module-name>
bloop test <module-name> -o "*<filename>*"
Module name is root for non-modular projects.
- Fall back to sbt if no
.bloopdirectory: