summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-10-30 15:17:05 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-11-01 10:45:03 -0400
commitc9efa2f6cf9fcfff00a29aeae5b400aaf5518e32 (patch)
treeb919a9847113296ba05e27352788fdee277a7131 /project
parent79087c79c402ababbb50fa9d1e4e78b0e52189c6 (diff)
downloadscala-c9efa2f6cf9fcfff00a29aeae5b400aaf5518e32.tar.gz
scala-c9efa2f6cf9fcfff00a29aeae5b400aaf5518e32.tar.bz2
scala-c9efa2f6cf9fcfff00a29aeae5b400aaf5518e32.zip
Removing actors-migration from main repository so it can live on elsewhere.
* Removes actors-migration hooks from partest * Removes actors-migration code * removes actors-migration tests * removes actors-migration distribution packaging.
Diffstat (limited to 'project')
-rw-r--r--project/Testing.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/project/Testing.scala b/project/Testing.scala
index cec1d8c60b..5de72116a3 100644
--- a/project/Testing.scala
+++ b/project/Testing.scala
@@ -29,12 +29,12 @@ trait Testing { self: ScalaBuild.type =>
val testsuite = (
Project("testsuite", file("."))
settings (testsuiteSettings:_*)
- dependsOn (scalaLibrary, scalaCompiler, fjbg, partest, scalacheck, actorsMigration)
+ dependsOn (scalaLibrary, scalaCompiler, fjbg, partest, scalacheck)
)
val continuationsTestsuite = (
Project("continuations-testsuite", file("."))
settings (continuationsTestsuiteSettings:_*)
- dependsOn (partest, scalaLibrary, scalaCompiler, fjbg, actorsMigration)
+ dependsOn (partest, scalaLibrary, scalaCompiler, fjbg)
)
}