diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-08-14 09:57:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 13:27:16 +0530 |
commit | 087ab547c123e90eb4207bfe9080486d54fbf3ef (patch) | |
tree | 78b131dcb059a691c81efbe72fcf68e3f65f470b /app/build.gradle.kts | |
parent | 57f1c65fdfbac9acd5e4fce30a6d5ef131fa9728 (diff) |
Reland symlink support (#1020)
* Add symlink support to JGit (#1016)
* Add symlink support to JGit
* Fix a typo
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
* Prevent crash when following a broken symlink
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 257a77fe..618190d1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -118,6 +118,8 @@ dependencies { implementation(Dependencies.ThirdParty.jgit) { exclude(group = "org.apache.httpcomponents", module = "httpclient") } + // Loaded dynamically by JGit to provide symlink support + implementation(Dependencies.ThirdParty.jgit_java7) implementation(Dependencies.ThirdParty.jsch) implementation(Dependencies.ThirdParty.sshj) implementation(Dependencies.ThirdParty.bouncycastle) |