From d85ce865d3381cfaae1600c7449a5f39b50a686c Mon Sep 17 00:00:00 2001 From: Roland Date: Mon, 23 Jul 2012 13:59:01 +0200 Subject: [PATCH] remove CPS stuff from AkkaBuild (breaks eclipse) --- project/AkkaBuild.scala | 4 ---- 1 file changed, 4 deletions(-) diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index bb0401f896..478d54c685 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -72,9 +72,7 @@ object AkkaBuild extends Build { base = file("akka-actor"), settings = defaultSettings ++ OSGi.actor ++ Seq( autoCompilerPlugins := true, - libraryDependencies <+= scalaVersion { v => compilerPlugin("org.scala-lang.plugins" % "continuations" % v) }, libraryDependencies <+= scalaVersion { v => "org.scala-lang" % "scala-reflect" % v }, - scalacOptions += "-P:continuations:enable", packagedArtifact in (Compile, packageBin) <<= (artifact in (Compile, packageBin), OsgiKeys.bundle).identityMap, artifact in (Compile, packageBin) ~= (_.copy(`type` = "bundle")), // to fix scaladoc generation @@ -101,8 +99,6 @@ object AkkaBuild extends Build { dependencies = Seq(testkit % "compile;test->test"), settings = defaultSettings ++ Seq( autoCompilerPlugins := true, - libraryDependencies <+= scalaVersion { v => compilerPlugin("org.scala-lang.plugins" % "continuations" % v) }, - scalacOptions += "-P:continuations:enable", libraryDependencies ++= Dependencies.actorTests ) )