Skip to content
This repository has been archived by the owner on May 22, 2022. It is now read-only.

Commit

Permalink
Clarify sbtLockHashIsUpToDate description re: transitive project deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
htmldoug committed Dec 12, 2018
1 parent a9f284f commit b9e53b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/scala/com/github/tkawachi/sbtlock/SbtLockKeys.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ object SbtLockKeys {
val unlock = taskKey[Unit]("Delete a version locking file for sbt-lock")
val collectLockModuleIDs = taskKey[Seq[ModuleID]]("Collect ModuleIDs to lock")
val checkLockUpdate = taskKey[Unit]("Check whether a version locking file needs update")
val sbtLockHashIsUpToDate = settingKey[Boolean]("lock.sbt file is up to date with libraryDependencies.")
val sbtLockHashIsUpToDate = settingKey[Boolean]("lock.sbt file is up to date with libraryDependencies in the current project. " +
"(sbtLockHashIsUpToDate in ThisProject) does NOT consider the libraryDependencies of project dependencies! " +
"(sbtLockHashIsUpToDate in ThisBuild) considers the libraryDependencies across all projects.")
val sbtLockIgnoreOverridesOnStaleHash = settingKey[Boolean]("When libraryDependencies are changed, ignores the lock.sbt file.")
}

0 comments on commit b9e53b1

Please sign in to comment.