Skip to content

Instantly share code, notes, and snippets.

@vbasem
vbasem / init-scala.sh
Last active December 20, 2015 14:59 — forked from maciej/init-scala.sh
Bootstrap scala project with SBT and generate IDEA project files. Requires pre-configured SBT-IDEA plugin available here : https://github.com/mpeltonen/sbt-idea
#!/bin/bash
PROJECT_NAME="$1"
SCALA_VERSION="2.10.2"
SCALATEST_VERSION="1.9.1"
SCALAMOCK_VERSION="3.0.1"
mkdir $PROJECT_NAME
cd $PROJECT_NAME