Getting Started

Using Dotty to compile your project is now pretty simple. Create the following structure:

.
├── build.sbt
├── project
│   ├── build.properties
│   └── plugins.sbt
└── src

build.sbt

name := "application"
version := "0.1"
enablePlugins(DottyPlugin)

build.properties

sbt.version=0.13.11

plugins.sbt

addSbtPlugin("com.felixmulder" % "sbt-dotty" % "0.1.7")

This plugin is based on the dotty-example-project , but let’s you skip building dotty from scratch.