Skip to content
Snippets Groups Projects
Commit cfaf4553 authored by Max Leuthäuser's avatar Max Leuthäuser
Browse files

- updated to latest SCROLL and Scala version

parent 29f0110c
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ Task and test files for MOST SCROLL task 1.
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.
......
......@@ -3,14 +3,14 @@ name := "MOSTSCROLLTask1"
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"
)
)
// 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")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment