From 5032696cec9da86c2ad97b9931e8d85feb18da0c Mon Sep 17 00:00:00 2001 From: Fabian Henneke Date: Thu, 13 Aug 2020 12:21:09 +0200 Subject: Add symlink support to JGit (#1016) * Add symlink support to JGit * Fix a typo Co-authored-by: Harsh Shandilya --- app/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app') 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) -- cgit v1.2.3