From 48afb488f909f6652c4db159b78bc9c0806f0a33 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 6 May 2025 13:58:30 +0200 Subject: [PATCH] Update build dependency jgit to 7.2.0.202503040940-r Notably it adds support for recognizing [git worktrees](https://www.tomups.com/posts/git-worktrees/). Trying to compile the compiler would fail under a worktree on the old version, due to jgit not recognizing it as a repository. Old version is over 7 years old at this point. --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 188dfa5c6702..be1036a5daa7 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,4 +1,4 @@ // Used by VersionUtil to get gitHash and commitDate -libraryDependencies += "org.eclipse.jgit" % "org.eclipse.jgit" % "4.11.0.201803080745-r" +libraryDependencies += "org.eclipse.jgit" % "org.eclipse.jgit" % "7.2.0.202503040940-r" libraryDependencies += Dependencies.`jackson-databind`