Getting Started with sbt
sbt is the standard build tool for Scala. It handles compiling, running, testing, and dependency management.
Installing sbt
Install from scala-sbt.org, or use SDKMAN:
sdk install sbtBasic sbt Structure
project/
build.properties
src/
main/
scala/
test/
scala/
build.sbtCommon sbt Commands
compile– Compile the coderun– Run the applicationtest– Run tests
