From f096d76cf6c9b813b135640b1dba54f70ebca848 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sun, 4 Sep 2011 13:33:40 -0400 Subject: [PATCH] 'skip' description --- main/Keys.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/Keys.scala b/main/Keys.scala index 7cd85bfc4..9baa6869a 100644 --- a/main/Keys.scala +++ b/main/Keys.scala @@ -284,7 +284,7 @@ object Keys val sbtResolver = SettingKey[Resolver]("sbt-resolver", "Provides a resolver for obtaining sbt as a dependency.") val sbtDependency = SettingKey[ModuleID]("sbt-dependency", "Provides a definition for declaring the current version of sbt.") val sbtVersion = SettingKey[String]("sbt-version", "Provides the version of sbt. This setting should be not be modified.") - val skip = TaskKey[Boolean]("skip") + val skip = TaskKey[Boolean]("skip", "For tasks that support it (currently only 'compile'), setting skip to true will force the task to not to do its work. This exact semantics may vary by task.") // special val parallelExecution = SettingKey[Boolean]("parallel-execution", "Enables (true) or disables (false) parallel execution of tasks.")