From 7565cc2e339c26f1212f67c00ed68d38d56840b0 Mon Sep 17 00:00:00 2001
From: Ismael Juma <ismael@juma.me.uk>
Date: Sun, 31 Jul 2011 20:13:16 +0100
Subject: [PATCH] Add type annotation to result of depJarSettings to workaround
 scalac bug.

---
 project/DepJar.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/project/DepJar.scala b/project/DepJar.scala
index 1d54005690..6ca00423be 100644
--- a/project/DepJar.scala
+++ b/project/DepJar.scala
@@ -90,7 +90,7 @@ object DepJarPlugin extends Plugin {
     descendants x relativeTo(base)
   }
 
-  lazy val depJarSettings = inConfig(DepJar)(Seq(
+  lazy val depJarSettings: Seq[Setting[_]] = inConfig(DepJar)(Seq(
     depJar <<= packageBin.identity,
     packageBin <<= assemblyTask,
     jarName <<= (name, version) { (name, version) => name + "-dep-" + version + ".jar" },
@@ -105,4 +105,4 @@ object DepJarPlugin extends Plugin {
   Seq(
     depJar <<= (depJar in DepJar).identity
   )
-}
\ No newline at end of file
+}
-- 
GitLab