* This article is part two in a series on setting up Scala for use with IntelliJ Adding Classes and Tests Now that we’ve got the project created, a working build system, and test packages installed, it’s time to get started writing some code. First, let’s create a package called org.awesome under src/main/scala. Then we’ll … Continue reading
Tag Archives: IntelliJ
Getting Started with Scala
We’re going to put together a working Scala system on MacOS. We’re going to need a few things: SBT – this is our build system and dependency management IntelliJ – our IDE Scala A few Scala plugins that we’ll pull in via SBT: FunSuite – our testing system gen-idea – a system to generate IntelliJ … Continue reading