Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 2.51 KB

local_scala_setup.md

File metadata and controls

63 lines (40 loc) · 2.51 KB

Local Scala setup

Interactive shell

  • Scala REPL
  • Ammonite
  • Jupyter notebook with almond.

Scala development tools

Artifacts fetching

  • SBT
  • Maven
  • Coursier - Through coursier we can install tools like scalafix-cli.

Scala environment managements

  • Scalaenv - Manage various scala versions
  • sdkman - This can also manage various scala versions.
  • Sbtenv - Manage various sbt versions

Scala CICD tools

  • Scala steward - Scala Steward is a bot that helps you keep library dependencies and sbt plugins up-to-date. Scala steward github action. You can also run your own instance of Scala Steward for your private repositories. For public repos, we can use the free service provided. More details can be found here

Useful articles

Following links provide a great tutorial to setup scala with Intellij

Following videos, tutorials are for scala good practices.

Following are excellent articles on SBT

Useful libraries

  • zio
  • cats
  • scalaz

References