Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 1.16 KB

README.md

File metadata and controls

27 lines (15 loc) · 1.16 KB

Scala Programming with SBT

Scala basic from beginner to advance level. This languages is very intuitive to use and less code to write and there is no verbosity like JAVA where we have to write huge amout of code.

This scala will be a good fit for Big Data developers, hopefully in recent few years.

Source Code Link: https://github.com/ManikHossain08/Scala-Programming-With-SBT/tree/main/scala-playground/src/main/scala/ca/basic/scala/bigdata

What is SBT?

  • sbt is an open-source build tool for Scala and Java projects, similar to Apache's Maven and Ant.

  • Its main features are:

    -- Native support for compiling Scala code and integrating with many Scala test frameworks

    -- Continuous compilation, testing, and deployment

    -- Incremental testing and compilation (only changed sources are re-compiled, only affected tests are re-run etc.)

    -- Build descriptions written in Scala using a DSL

    -- Dependency management using Apache Ivy (which supports Maven-format repositories)

    -- Integration with the Scala interpreter for rapid iteration and debugging

    -- Support for mixed Java/Scala projects

Source: https://en.wikipedia.org/wiki/Sbt_(software)