diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2018-01-07 22:43:24 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2018-01-07 22:43:24 +0100 |
commit | ea72d18e67035fbb4f6d82583ee35cdd8855b703 (patch) | |
tree | efc5406adafce198f22e80f61119b86b6eb44ecd | |
parent | da4bbf398f13f911cd30d232ca4f8de46ac5ed3f (diff) |
Simplify build definition.
This patch removes some superfluous settings from build.sbt.
-rw-r--r-- | build.sbt | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -2,9 +2,6 @@ name := "fibers" mainClass in Compile := None inThisBuild(Seq( - scalaOrganization := "org.typelevel", - scalaVersion := "2.12.4-bin-typelevel-4", - version := "0.1.0-SNAPSHOT", organization := "eu.mulk", @@ -23,12 +20,6 @@ lazy val core = (project in file("core")) scalaSource in Compile := baseDirectory.value / "lib", scalaSource in Test := baseDirectory.value / "t", - scalacOptions += "-Yliteral-types", - - scalacOptions ++= Seq( - "-Ypartial-unification", - ), - // Continuations addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.12.2" % "1.0.3"), libraryDependencies += "org.scala-lang.plugins" %% "scala-continuations-library" % "1.0.3", |