diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-08-13 12:21:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 15:51:09 +0530 |
commit | 5032696cec9da86c2ad97b9931e8d85feb18da0c (patch) | |
tree | 00710329057efb914d03e6f49228350ae0f83a6f /app | |
parent | a1f3d118c99397502377b604419c2cb3c3fb821e (diff) |
Add symlink support to JGit (#1016)
* Add symlink support to JGit
* Fix a typo
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index d814e992..618190d1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -44,6 +44,7 @@ android { exclude("**/*.version") exclude("**/*.txt") exclude("**/*.kotlin_module") + exclude("**/plugin.properties") } buildTypes { @@ -117,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) |