aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--project/DepJar.scala4
1 files 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
+}