;;; scala-compile.el --- batch compile scala -*- lexical-binding: t -*-
;; Copyright (C) 2020 Sam Halliday
;; License: GPL 3 or any later version
;;; Commentary:
;;
;; An idiomatic `compilation-mode' batch compilation command that detects
;; warnings and errors, extracting line numbers, columns and ranges.
;;
;; Relies on a batch tool, such as the sbt thin client (`sbt --client`) which
;; can be compiled to native binary (`sbtn`) from their repo with `sbt
;; buildNativeThinClient` or mystery meat binaries downloaded from
;; https://github.com/sbt/sbtn-dist/releases/
;;
;;; Code:
;;;###autoload
;;; scala-compile.el ends here