diff --git a/README.md b/README.md
index 534274515f588ec21957221b578c436d243386bd..c393546b5c6ad76bbb3ac26cb477f3b9162e4474 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Task and test files for MOST SCROLL task 2.
 2. Clone this repository.
 
 3. Set up your favorite IDE:
-  1. For Intellij: run ```sbt gen-idea``` and open the generated project with Intellij.
+  1. For Intellij: use the SBT import functionality provided by Intellij.
   2. For Eclipse: run ```sbt eclipse``` and import the generated project with Eclipse.
 
 4. Implement your solution in the ```solution``` package.
diff --git a/build.sbt b/build.sbt
index 839c0a580f2116371af2a72066b905daa6972d3e..10140cf44c4f3f4293cac5f6336a5ac8bbe9270c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -3,14 +3,14 @@ name := "MOSTSCROLLTask2"
 lazy val commonSettings = Seq(
   organization := "tu.dresden.de",
   version := "0.0.1",
-  scalaVersion := "2.11.7",
-  scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-encoding", "utf8")
+  scalaVersion := "2.12.3",
+  scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-language:reflectiveCalls", "-encoding", "utf8")
 )
 
 lazy val main = (project in file(".")).settings(commonSettings: _*).
   settings(
     libraryDependencies ++= Seq(
-      "com.github.max-leuthaeuser" % "scroll_2.11" % "latest.integration",
-      "org.scalatest" %% "scalatest" % "2.2.1" % "test"
+      "com.github.max-leuthaeuser" %% "scroll" % "latest.integration",
+      "org.scalatest" %% "scalatest" % "3.0.4" % "test"
     )
   )
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 2cb91abd36125569d3b443c40596bd845daf13a1..7631aa438d97ffa874ddf20bede19a9733e3bd71 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,5 +1,2 @@
-// gen-idea plugin
-addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
-
 // eclipse plugin
-addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
+addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.2")